mirror of
https://github.com/tc39/test262.git
synced 2025-05-03 06:20:37 +02:00
10 lines
193 B
JavaScript
10 lines
193 B
JavaScript
//@ if $memoryLimited then skip else runDefault end
|
|
|
|
try {
|
|
const s = "123".padStart(1073741823);
|
|
JSON.stringify(s);
|
|
} catch(e) {
|
|
if (e != "Error: Out of memory")
|
|
throw e;
|
|
}
|