TypeScript/tests/baselines/reference/internalAliasClass.types
2014-08-15 14:37:48 -07:00

24 lines
286 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 c
>a : c
>c : c
export var x: b = new b();
>x : c
>b : b
>new b() : c
>b : typeof c
}