summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug658209.js
blob: 966c10f28b8cff4160990d2bd5a1c4956a96971b (plain)
1
2
3
4
5
6
7
8
9
10
for (var i=0; i<20; i++) {
    (function () {
        var x;
        (function () {
            x = /abc/;
            x++;
            gc();
        })();
    })();
}