TypeScript/tests/baselines/reference/acceptableAlias1.types

18 lines
224 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/acceptableAlias1.ts ===
module M {
>M : typeof M
2014-08-15 23:33:16 +02:00
export module N {
>N : any
2014-08-15 23:33:16 +02:00
}
export import X = N;
>X : any
>N : any
2014-08-15 23:33:16 +02:00
}
import r = M.X;
>r : any
>M : typeof M
>X : any
2014-08-15 23:33:16 +02:00