TypeScript/tests/baselines/reference/acceptableAlias1.types

18 lines
207 B
Text
Raw Normal View History

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