summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug676764.js
blob: fca27de64c109facb8ab65a70bac8383f99dc96a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
try { with( {"a":1} ) {
    (function () {
        for (;;) {
            t
        }
    })()
} } catch (e) {}

with( {"b":2} ) {
  (function () {
    for (b = 0; b < 18; ++b) {}
  })();
}