blob: 2980cfa59686f72d723d38d3de2cb642e0b92bf1 [file] [log] [blame]
function f(a, b, c) {
while (a) {
let x;
if (b) {
if (c) {
d();
break; // hidden LEAVEBLOCK, then GOTO
}
break; // another hidden LEAVEBLOCK, then GOTO
}
}
null.x;
}
try {
f();
} catch (x) {
;
}