mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +02:00
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()
|