summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1161303.js
blob: 872f137632d845317c357fc79ee194045101a878 (plain)
1
2
3
4
5
6
7
function f(x) {
    for (var i = 0; i < 100000; i++ ) {
        [(x, 2)];
        try { g(); } catch (t) {}
    }
}
f(2);