TypeScript/tests/baselines/reference/internalAliasWithDottedNameEmit.types
2015-04-15 16:44:20 -07:00

20 lines
288 B
Text

=== tests/cases/compiler/internalAliasWithDottedNameEmit.ts ===
module a.b.c {
>a : typeof a
>b : typeof b
>c : typeof c
export var d;
>d : any
}
module a.e.f {
>a : typeof a
>e : any
>f : any
import g = b.c;
>g : typeof g
>b : typeof b
>c : typeof g
}