2015-01-24 16:32:02 +11:00

12 lines
132 B
JavaScript

if (true) {
const x = 1;
switch (x) {
case 1: {
function y() {
assert(x, 1);
}
break;
}
}
}