summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1204165.js
blob: b9d748618818d09681ee5c0b2fbf8c330b910520 (plain)
1
2
3
4
5
6
7
8
9
10
var x;
function f() {
    x = [];
    for (var i = 0; i < 1; ++i) {
        x.push("");
    }
    [0].concat(x);
}
f();
f();