TypeScript/tests/baselines/reference/moduleImportedForTypeArgumentPosition.types
2014-08-28 12:40:58 -07:00

21 lines
443 B
Plaintext

=== tests/cases/compiler/moduleImportedForTypeArgumentPosition_1.ts ===
/**This is on import declaration*/
import M2 = require("moduleImportedForTypeArgumentPosition_0");
>M2 : typeof M2
class C1<T>{ }
>C1 : C1<T>
>T : T
class Test1 extends C1<M2.M2C> {
>Test1 : Test1
>C1 : C1<T>
>M2 : unknown
>M2C : M2.M2C
}
=== tests/cases/compiler/moduleImportedForTypeArgumentPosition_0.ts ===
export interface M2C { }
>M2C : M2C