TypeScript/tests/baselines/reference/collisionCodeGenModuleWithPrivateMember.types

24 lines
370 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/collisionCodeGenModuleWithPrivateMember.ts ===
module m1 {
2014-08-28 21:40:58 +02:00
>m1 : typeof m1
2014-08-15 23:33:16 +02:00
class m1 {
>m1 : m1
}
var x = new m1();
>x : m1
>new m1() : m1
>m1 : typeof m1
export class c1 {
>c1 : c1
}
}
var foo = new m1.c1();
2014-08-25 19:36:12 +02:00
>foo : m1.c1
>new m1.c1() : m1.c1
>m1.c1 : typeof m1.c1
2014-08-15 23:33:16 +02:00
>m1 : typeof m1
2014-08-25 19:36:12 +02:00
>c1 : typeof m1.c1
2014-08-15 23:33:16 +02:00