tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

bug-1006876-too-much-recursion.js (230B)


      1 // |jit-test| exitstatus: 3
      2 
      3 // This test case was found by the fuzzer and crashed the js shell. It should
      4 // throw a "too much recursion" error, but was crashing instead.
      5 
      6 enableTrackAllocations();
      7 function f() {
      8    f();
      9 }
     10 f();