blob: f21fc5c192d85012cd6e52bf7481dfb2ab132fb3 [file] [log] [blame]
q = "";
function g() { q += "g"; }
function h() { q += "h"; }
a = [g, g, g, g, h];
for (i=0; i<5; i++) { f = a[i]; f(); }
function testRebranding() {
return q;
}
assertEq(testRebranding(), "ggggh");