blob: eb060cc6d9945029ffc0de4ffc01a0a5a184273f [file] [log] [blame]
//@ runDefault("--useConcurrentJIT=0", "--useFTLJIT=0")
function bar() {
try {
throw new Error();
} catch {}
+arguments;
}
function foo() {
for (let i=0; i<100; i++) {}
bar(...[]);
for (let i=0; i<100; i++) {
bar();
}
}
for (let i=0; i<100; i++) {
foo(Object);
gc();
}