TypeScript/tests/cases/compiler/cyclicTypeInstantiation.ts
2015-05-20 16:31:03 -07:00

21 lines
355 B
TypeScript

function foo<T>() {
var x: {
a: T;
b: typeof x;
};
return x;
}
function bar<T>() {
var x: {
a: T;
b: typeof x;
};
return x;
}
var a = foo<string>();
var b = bar<string>();
// Relating types of a and b produces instantiations of the cyclic anonymous types in foo and bar
a = b;