blob: 98a16262267e63a7b29db553bc1fbf71884a9d72 [file] [log] [blame]
//@ requireOptions("--maximumFunctionForCallInlineCandidateBytecodeCost=1000")
function bar() {
foo();
}
function foo() {
let p = new Proxy({}, {isExtensible: bar});
Object.isSealed(p);
for (let z of []) {}
}
try {
// This will stack overflow.
foo();
} catch { }