TypeScript/tests/cases/compiler/recursiveGenericUnionType2.ts
Anders Hejlsberg 139b5545a0 Adding tests
2015-10-03 18:08:45 -07:00

21 lines
457 B
TypeScript

declare module Test1 {
export type Container<T> = T | {
[i: string]: Container<T>[];
};
export type IStringContainer = Container<string>;
}
declare module Test2 {
export type Container<T> = T | {
[i: string]: Container<T>[];
};
export type IStringContainer = Container<string>;
}
var x: Test1.Container<number>;
var s1: Test1.IStringContainer;
var s2: Test2.IStringContainer;
s1 = s2;
s2 = s1;