tor-browser

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

bug618849.js (156B)


      1 function f() {
      2    function g() {
      3        var b = x;
      4        var c = b++ & b;
      5        return c;
      6    }
      7    var x = x--;
      8    return g();
      9 }
     10 assertEq(f(), 0);