blob: a67174c757783c9c5d65ad57fd0ca6d18439fc84 [file] [log] [blame]
// |jit-test| error:ReferenceError: can't access lexical
try {
evaluate("let x = (() => { throw 3 })();");
} catch(e) {
assertEq(e, 3);
}
Object.defineProperty(this, "x", {});
(function() { x = 3; })();