TypeScript/tests/baselines/reference/internalAliasClass.types

24 lines
286 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== 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
}