summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/bug1121083.js
blob: ef4ff69c853835cb10e31c36b04bc9ce697557db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// |jit-test| error:terminated
options('werror');

g = newGlobal();
g.parent = this;
g.eval("Debugger(parent).onExceptionUnwind = function () {};");

function f(x) {
    if (x === 0) {
        return;
    }
    f(x - 1);
    f(x - 1);
}
timeout(0.00001);
f(100);