blob: c9c449ef39c9a7ec216ea8192a01cf7703c5c607 [file] [log] [blame] [edit]
//@ runDefault("--jitPolicyScale=0", "--watchdog=5000", "--watchdog-exception-ok")
class C {
static foo() {
function bar(a0) {
try {
a0(C);
} catch {
}
return a0(a0);
}
bar(bar.bind());
}
}
try {
C.foo();
} catch {
}