2015-01-22 10:19:45 -08:00

12 lines
133 B
JavaScript

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