TypeScript/tests/cases/conformance/types/thisType/thisTypeInBasePropertyAndDerivedContainerOfBase01.ts
Daniel Rosenwasser 0abb4c907e Added tests.
2016-02-28 19:57:12 -08:00

13 lines
177 B
TypeScript

// @declaration: true
interface BoxOfFoo<T extends Foo> {
item: T
}
interface Foo {
self: this;
}
interface Bar extends Foo {
other: BoxOfFoo<this>;
}