blob: f66c65ab6c84d4d68dec3fd0d5d03b69da99e39a [file] [log] [blame]
if (typeof oomAfterAllocations !== 'function')
quit();
function first(a) {
return a[0];
}
try {
first([function() {}]);
first([function() {}]);
oomAfterAllocations(50);
first([function() {}]);
} catch(e) {
// ignore oom
}