mirror of
https://github.com/tc39/test262.git
synced 2025-05-03 14:30:27 +02:00
13 lines
236 B
JavaScript
13 lines
236 B
JavaScript
//@ if $memoryLimited then skip else runDefault end
|
|
|
|
var exception;
|
|
try {
|
|
const str = "a".padStart(0x80000000 - 1);
|
|
new Date(str);
|
|
} catch (e) {
|
|
exception = e;
|
|
}
|
|
|
|
if (exception != "Error: Out of memory")
|
|
throw "FAILED";
|