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

19 lines
616 B
Plaintext

=== tests/cases/compiler/constDeclarationShadowedByVarDeclaration2.ts ===
// No errors, const declaration is not shadowed
function outer() {
>outer : () => void, Symbol(outer, Decl(constDeclarationShadowedByVarDeclaration2.ts, 0, 0))
const x = 0;
>x : number, Symbol(x, Decl(constDeclarationShadowedByVarDeclaration2.ts, 3, 9))
>0 : number
function inner() {
>inner : () => void, Symbol(inner, Decl(constDeclarationShadowedByVarDeclaration2.ts, 3, 16))
var x = "inner";
>x : string, Symbol(x, Decl(constDeclarationShadowedByVarDeclaration2.ts, 5, 11))
>"inner" : string
}
}