TypeScript/tests/cases/compiler/nestedBlockScopedBindings10.ts

11 lines
108 B
TypeScript
Raw Normal View History

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