michael@0: // |jit-test| exitstatus: 6 michael@0: function f(x) { michael@0: if (x === 0) michael@0: return; michael@0: f(x - 1); michael@0: f(x - 1); michael@0: f(x - 1); michael@0: f(x - 1); michael@0: f(x - 1); michael@0: f(x - 1); michael@0: } michael@0: timeout(0.1); michael@0: f(100); michael@0: assertEq(0, 1);