blob: 4cb36355237f884878281942860a8c2f20617008 [file] [log] [blame]
//@ runDefault("--jitPolicyScale=0", "--useArrayAllocationProfiling=0")
function foo() {
for (let i = 0; i < 30; i++) {
const ar = [];
for (let j = 0; j <= 1500; j++) {
ar[j] = null;
}
}
}
foo();