mirror of https://github.com/tc39/test262.git
14 lines
299 B
JavaScript
14 lines
299 B
JavaScript
|
//@ runDefault("--softReservedZoneSize=16384", "--reservedZoneSize=0", "--useJIT=0", "--validateBytecode=1", "--maxPerThreadStackUsage=499712")
|
||
|
|
||
|
function f() {
|
||
|
try {
|
||
|
f();
|
||
|
} catch (e) {
|
||
|
try {
|
||
|
Map.prototype.forEach.call('', {});
|
||
|
} catch (e) {}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
f()
|