TypeScript/tests/baselines/reference/genericArrayWithoutTypeAnnotation.errors.txt

13 lines
428 B
Plaintext
Raw Normal View History

tests/cases/compiler/genericArrayWithoutTypeAnnotation.ts(4,24): error TS2314: Generic type 'IFoo<T>' requires 1 type argument(s).
2014-07-13 01:04:16 +02:00
==== 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).
2014-07-13 01:04:16 +02:00
}
}