mirror of https://github.com/tc39/test262.git
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";
|