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