blob: 6a3369cc424f0572062a3a05eca1b1f7debdee07 [file] [log] [blame]
// |jit-test| allow-oom
if (!('gczeal' in this && 'oomAfterAllocations' in this))
quit();
var lfcode = new Array();
gczeal(14);
loadFile(`
for each(let e in newGlobal()) {
if (oomAfterAllocations(100))
continue;
}
`);
function loadFile(lfVarx) {
for (lfLocal in this) {}
evaluate(lfVarx);
}