TypeScript/tests/baselines/reference/genericArrayWithoutTypeAnnotation.errors.txt
2014-07-12 17:30:19 -07:00

10 lines
278 B
Plaintext

==== 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).
}
}