TypeScript/tests/cases/compiler/genericArrayWithoutTypeAnnotation.ts
2014-07-12 17:30:19 -07:00

7 lines
80 B
TypeScript

interface IFoo<T>{
}
class Bar {
public getBar(foo: IFoo[]) {
}
}