blob: 17cecb9065851d19620ae5070e6bbb8543429e1c [file] [log] [blame]
//@ runDefault("--destroy-vm", "--maximumFunctionForCallInlineCandidateBytecodeCost=500", "--maximumInliningRecursion=5")
function* gen() {
}
let g = gen();
function f() {
g.next();
f();
f();
f();
f();
f();
f();
f();
f();
f();
f();
};
try {
f();
} catch { }