TypeScript/tests/baselines/reference/letKeepNamesOfTopLevelItems.types
2015-04-13 14:29:37 -07:00

18 lines
478 B
Plaintext

=== tests/cases/compiler/letKeepNamesOfTopLevelItems.ts ===
let x;
>x : any, Symbol(x, Decl(letKeepNamesOfTopLevelItems.ts, 0, 3))
function foo() {
>foo : () => void, Symbol(foo, Decl(letKeepNamesOfTopLevelItems.ts, 0, 6))
let x;
>x : any, Symbol(x, Decl(letKeepNamesOfTopLevelItems.ts, 2, 7))
}
module A {
>A : typeof A, Symbol(A, Decl(letKeepNamesOfTopLevelItems.ts, 3, 1))
let x;
>x : any, Symbol(x, Decl(letKeepNamesOfTopLevelItems.ts, 6, 7))
}