test262/implementation-contributed/javascriptcore/stress/string-overflow-createError.js

13 lines
230 B
JavaScript

//@ skip if $memoryLimited
var exception;
try {
bar = '2.3023e-320'
foo = bar.padEnd(2147483644, 1);
foo(true, 1).value;
} catch (e) {
exception = e;
}
if (exception != "Error: Out of memory")
throw "FAILED";