TypeScript/tests/baselines/reference/sourcemapValidationDuplicateNames.types
2014-08-15 14:37:48 -07:00

22 lines
306 B
Plaintext

=== 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
}