tor-browser

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

bug1629503-2.js (197B)


      1 // |jit-test| error: TypeError: invalid assignment to const
      2 function f() {
      3    const x60 = [0, 1];
      4    const y81 = [...x60];
      5    {
      6        const x60 = [0, 1];
      7        [...x60] = [42];
      8    }
      9 }
     10 f();