TypeScript/tests/baselines/reference/internalAliasClass.types
2015-04-15 16:44:20 -07:00

24 lines
293 B
Plaintext

=== tests/cases/compiler/internalAliasClass.ts ===
module a {
>a : typeof a
export class c {
>c : c
}
}
module c {
>c : typeof c
import b = a.c;
>b : typeof b
>a : typeof a
>c : b
export var x: b = new b();
>x : b
>b : b
>new b() : b
>b : typeof b
}