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

21 lines
286 B
Plaintext

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