blob: 4b4a3859551d32b03645fff271ff1348c7df9348 [file] [log] [blame]
function test() {
var f = (function() { return z => arguments[0]; }(5));
return f(6) === 5;
}
if (!test())
throw new Error("Test failed");