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

22 lines
305 B
Plaintext

=== tests/cases/compiler/internalImportUnInstantiatedModuleNotReferencingInstanceNoConflict.ts ===
module A {
>A : any
export interface X { s: string }
>X : X
>s : string
}
module B {
>B : typeof B
var A = 1;
>A : number
>1 : number
import Y = A;
>Y : any
>A : any
}