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

21 lines
285 B
Plaintext

=== tests/cases/compiler/aliasInaccessibleModule2.ts ===
module M {
>M : typeof M
module N {
>N : typeof N
class C {
>C : C
}
}
import R = N;
>R : typeof N
>N : typeof N
export import X = R;
>X : typeof N
>R : typeof N
}