blob: 5bfdd397118457ad9c42c3d3c3347650ccc1f049 [file] [log] [blame]
function ident() { return "foo"; }
noInline(ident);
let o = {
set foo(x) {
foo(false);
}
};
function foo(cond) {
if (cond)
o[ident()] = 20;
}
for (let i = 0; i < 10000; i++) {
foo(true);
}