blob: 35b285116baa83eaccf7f14690efbd07fc80f486 [file] [log] [blame]
//@ requireOptions("--maxPerThreadStackUsage=153600", "--exceptionStackTraceLimit=0", "--defaultErrorStackTraceLimit=0")
function foo() {
JSON.stringify();
foo();
}
try {
foo();
} catch (e) {
if (e != "RangeError: Maximum call stack size exceeded.")
throw e;
}