summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1115665.js
blob: 0ec96fc62040a651afc41c096dea8d364e98abb7 (plain)
1
2
3
4
5
6
7
8
Object.prototype[3] = 3
x = Array()
    function f() {
        for (i = 0; i < 9; i++) {
            if (Object[x++] != 0) {}
        }
    }
f()