blob: 1bd89722d54c06a7f1e06add307c6d1c295d871f [file] [log] [blame]
function test() {
return (() => {
try { Function("x\n => 2")(); } catch(e) { return true; }
})();
}
if (!test())
throw new Error("Test failed");