blob: 410c3a8a4d7cb5b01a6e20e148eb47ff0befb768 [file] [log] [blame]
function foo() {
x = null;
}
function f() {
for (var i=0; i<99; i++) {
x = null;
if (i >= 97) {
gc();
gc();
foo();
}
x = {};
if (i >= 97)
foo();
}
}
f();