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

10 lines
278 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/genericArrayWithoutTypeAnnotation.ts (1 errors) ====
interface IFoo<T>{
}
class Bar {
public getBar(foo: IFoo[]) {
~~~~
!!! Generic type 'IFoo<T>' requires 1 type argument(s).
}
}