blob: 9a1a2cfacf3eff465f567c4cb4ed5b80f7a40b25 [file] [log] [blame]
//@ skip if $memoryLimited
//@ runDefault
const a = [0];
a.__proto__ = {};
Object.defineProperty(a, 0, {
get: foo
});
Object.defineProperty(a, 80000000, {});
function foo() {
new Uint8Array(a);
}
new Promise(foo);
var exception;
try {
for (let i = 0; i < 10000000; i++)
new ArrayBuffer(1000);
} catch (e) {
exception = e;
}
if (exception != "Error: Out of memory")
throw "FAILED";