blob: cacc76536372a13db6a62c3f986a0d5699ceebc6 [file] [log] [blame]
// Often hits JSCTEST_memoryLimit on ARM with --memory-limited.
//@ skip if ($architecture == "arm") and $memoryLimited
//@ 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 { }