blob: b9d748618818d09681ee5c0b2fbf8c330b910520 [file] [log] [blame]
var x;
function f() {
x = [];
for (var i = 0; i < 1; ++i) {
x.push("");
}
[0].concat(x);
}
f();
f();