blob: aaf4454cf6800c55ef7e6c314584482df31f1d57 [file] [log] [blame]
function bar() {}
function foo() {
let x = 0;
try {
undefined instanceof {};
} catch {}
bar.apply(0, [], x);
}
noInline(foo);
for (let i=0; i < 10000; i++) {
foo();
}