summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-906236.js
blob: 7566bda428dca4c7e1fedcd696b761245089d524 (plain)
1
2
3
4
5
6
7
8
9
// |jit-test| error: too much recursion
(function() {
    (function f(x) {
        return x * f(x - 1);
        with({})
        var r = ""
    })()
})()