blob: fc7e479903ded2ecdc8c117f9b9f7ddc05dab69c [file] [edit]
//@ memoryHog!
try {
const s = "123".padStart(1073741823);
JSON.stringify(s);
} catch(e) {
if (e != "RangeError: Out of memory")
throw e;
}