summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1647293.js
blob: 4c474f5f9a57acb04ca71c5d9cc031b445a244b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function f() {
    var i = 0;
    while (i != 3000) {
        if (typeof i !== "number") {
            var x = i || 8;
        }
        var next = i + 1;
        i = arguments;
        i = next;
    }
}
f();