TypeScript/tests/cases/compiler/nestedGenerics.ts

5 lines
53 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
interface Foo<T> {
t: T;
}
var f: Foo<Foo<number>>;