TypeScript/tests/baselines/reference/internalAliasClass.types

24 lines
293 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/internalAliasClass.ts ===
module a {
>a : typeof a
2014-08-15 23:33:16 +02:00
export class c {
>c : c
2014-08-15 23:33:16 +02:00
}
}
module c {
>c : typeof c
2014-08-15 23:33:16 +02:00
import b = a.c;
>b : typeof b
>a : typeof a
>c : b
2014-08-15 23:33:16 +02:00
export var x: b = new b();
>x : b
>b : b
2014-08-25 19:36:12 +02:00
>new b() : b
>b : typeof b
2014-08-15 23:33:16 +02:00
}