TypeScript/tests/baselines/reference/importAndVariableDeclarationConflict2.types

24 lines
298 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/importAndVariableDeclarationConflict2.ts ===
module m {
>m : typeof m
export var m = '';
>m : string
}
import x = m.m;
>x : string
>m : typeof m
2014-08-15 23:33:16 +02:00
>m : string
class C {
>C : C
public foo() {
>foo : () => void
var x = '';
>x : string
}
}