blob: 104d2101295179b886f2ff1d9c25e22a198be57b [file] [log] [blame]
function test() {
const baz = 1;
try {
Function("const foo = 1; foo = 2;")();
} catch(e) {
return true;
}
}
if (!test())
throw new Error("Test failed");