summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/saved-stacks/bug-1006876-too-much-recursion.js
blob: 593c4b40bf542cf3871e10fa5980e6fae7202c54 (plain)
1
2
3
4
5
6
7
8
9
10
// |jit-test| exitstatus: 3

// This test case was found by the fuzzer and crashed the js shell. It should
// throw a "too much recursion" error, but was crashing instead.

enableTrackAllocations();
function f() {
    f();
}
f();