TypeScript/tests/baselines/reference/sourcemapValidationDuplicateNames.types

22 lines
306 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/sourcemapValidationDuplicateNames.ts ===
module m1 {
>m1 : typeof m1
var x = 10;
>x : number
export class c {
>c : c
}
}
module m1 {
>m1 : typeof m1
var b = new m1.c();
>b : c
>new m1.c() : c
>m1.c : typeof c
>m1 : typeof m1
>c : typeof c
}