TypeScript/tests/baselines/reference/moduleImportedForTypeArgumentPosition.types

21 lines
443 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/moduleImportedForTypeArgumentPosition_1.ts ===
/**This is on import declaration*/
import M2 = require("moduleImportedForTypeArgumentPosition_0");
2014-08-28 21:40:58 +02:00
>M2 : typeof M2
2014-08-15 23:33:16 +02:00
class C1<T>{ }
>C1 : C1<T>
>T : T
class Test1 extends C1<M2.M2C> {
>Test1 : Test1
>C1 : C1<T>
2014-08-28 21:40:58 +02:00
>M2 : unknown
2014-08-25 19:36:12 +02:00
>M2C : M2.M2C
2014-08-15 23:33:16 +02:00
}
=== tests/cases/compiler/moduleImportedForTypeArgumentPosition_0.ts ===
export interface M2C { }
>M2C : M2C