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

18 lines
201 B
Plaintext

=== tests/cases/compiler/letKeepNamesOfTopLevelItems.ts ===
let x;
>x : any
function foo() {
>foo : () => void
let x;
>x : any
}
module A {
>A : typeof A
let x;
>x : any
}