blob: 5b8337214166f0db85ace3a5d3bd53a41b5f4a79 [file] [log] [blame]
const a0 = [0];
function foo() {
for (let i=1; i<100; i++) {
a0[i];
a0[i] = undefined;
let x = [];
for (let j = 0; j < 20; j++) {}
}
}
for (let i=0; i<10000; i++) {
foo();
}