TypeScript/tests/baselines/reference/internalAliasVarInsideLocalModuleWithExport.types
2014-08-18 19:56:03 -07:00

22 lines
322 B
Plaintext

=== tests/cases/compiler/internalAliasVarInsideLocalModuleWithExport.ts ===
export module a {
>a : typeof a
export var x = 10;
>x : number
}
export module c {
>c : typeof c
export import b = a.x;
>b : number
>a : typeof a
>x : number
export var bVal = b;
>bVal : number
>b : number
}