summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug551603.js
blob: 019408e27084ca749b09d101989824068ff53a8a (plain)
1
2
3
4
5
6
7
8
(function() {
  ((function f(a) {
    if (a > 0) {
      f(a - 1)
    }
  })(6))
})()