TypeScript/tests/baselines/reference/internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.types

24 lines
340 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts ===
class A {
>A : A
2014-08-15 23:33:16 +02:00
aProp: string;
>aProp : string
2014-08-15 23:33:16 +02:00
}
module A {
>A : typeof A
2014-08-15 23:33:16 +02:00
export interface X { s: string }
>X : X
>s : string
2014-08-15 23:33:16 +02:00
}
module B {
>B : any
2014-08-15 23:33:16 +02:00
import Y = A;
>Y : typeof Y
>A : Y
2014-08-15 23:33:16 +02:00
}