blob: 7566bda428dca4c7e1fedcd696b761245089d524 [file] [log] [blame]
// |jit-test| error: too much recursion
(function() {
(function f(x) {
return x * f(x - 1);
with({})
var r = ""
})()
})()