test262/implementation-contributed/javascriptcore/stress/json-stringified-overflow.js

10 lines
168 B
JavaScript

//@ skip if $memoryLimited
try {
const s = "123".padStart(1073741823);
JSON.stringify(s);
} catch(e) {
if (e != "Error: Out of memory")
throw e;
}