TypeScript/tests/baselines/reference/genericArrayWithoutTypeAnnotation.errors.txt
2014-09-12 13:35:07 -07:00

13 lines
428 B
Plaintext

tests/cases/compiler/genericArrayWithoutTypeAnnotation.ts(4,24): error TS2314: Generic type 'IFoo<T>' requires 1 type argument(s).
==== tests/cases/compiler/genericArrayWithoutTypeAnnotation.ts (1 errors) ====
interface IFoo<T>{
}
class Bar {
public getBar(foo: IFoo[]) {
~~~~
!!! error TS2314: Generic type 'IFoo<T>' requires 1 type argument(s).
}
}