TypeScript/tests/cases/compiler/nestedBlockScopedBindings12.ts

13 lines
124 B
TypeScript
Raw Normal View History

var x;
{
let x;
x = 1;
}
var y;
switch (1) {
case 1:
let y;
y = 1;
break;
}