blob: 8f8e91ec238d9c3d37b71113da2583aa83403b59 [file] [log] [blame]
//@ skip if $buildType == "release"
//@ runDefault("--watchdog=90", "--jitPolicyScale=0", "--watchdog-exception-ok")
function bar() {
try {
undefined instanceof [];
} catch {}
let a = [0];
for (let i = 0; i < 100; i++) {}
foo();
let b = a;
}
function foo() {
bar();
}
bar();