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

5 lines
53 B
TypeScript

interface Foo<T> {
t: T;
}
var f: Foo<Foo<number>>;