TypeScript/tests/baselines/reference/importAndVariableDeclarationConflict2.types
2015-04-15 16:44:20 -07:00

26 lines
326 B
Plaintext

=== tests/cases/compiler/importAndVariableDeclarationConflict2.ts ===
module m {
>m : typeof m
export var m = '';
>m : string
>'' : string
}
import x = m.m;
>x : string
>m : typeof m
>m : string
class C {
>C : C
public foo() {
>foo : () => void
var x = '';
>x : string
>'' : string
}
}