tor-browser

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

bug1621268-1.js (196B)


      1 // |jit-test| error:ReferenceError: can't access lexical declaration
      2 function f() {
      3    for (let x of [1]) {
      4        let y = new Date(x);
      5        `Cannot parse "${x}"`;
      6        let x;
      7    }
      8 }
      9 f();