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

28 lines
391 B
Plaintext

=== tests/cases/compiler/internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts ===
class A {
>A : A
aProp: string;
>aProp : string
}
module A {
>A : typeof A
export interface X { s: string }
>X : X
>s : string
export var a = 10;
>a : number
>10 : number
}
module B {
>B : any
import Y = A;
>Y : typeof Y
>A : Y
}