TypeScript/tests/baselines/reference/declFileImportChainInExportAssignment.types
2014-08-27 16:58:31 -07:00

24 lines
310 B
Text

=== tests/cases/compiler/declFileImportChainInExportAssignment.ts ===
module m {
>m : m
export module c {
>c : m.c
export class c {
>c : c
}
}
}
import a = m.c;
>a : a
>m : typeof m
>c : typeof a
import b = a;
>b : b
>a : typeof a
export = b;
>b : typeof a