summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug517721.js
blob: 77a2c944e641492ab011806c2f8779268042faf5 (plain)
1
2
3
4
5
6
7
8
try {
    for (var j = 0; j < 2; ++j) {
        if (j == 1) {
            ++(null[2]);
        }
    }
} catch(e) {
}