mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +02:00
11 lines
196 B
JavaScript
11 lines
196 B
JavaScript
//@ if $memoryLimited then skip else runDefault end
|
|
|
|
try {
|
|
const s = "a".padStart(0x80000000 - 1);
|
|
JSON.stringify(s);
|
|
} catch(e) {
|
|
if (e != "Error: Out of memory")
|
|
throw e;
|
|
}
|
|
|