TypeScript/tests/cases/compiler/cyclicTypeInstantiation.ts

21 lines
355 B
TypeScript
Raw Normal View History

2015-05-21 01:31:03 +02:00
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;