Source code
Revision control
Copy as Markdown
Other Tools
// "use strict" is not special as the body of an arrow function without braces.
var f = (a = obj => { with (obj) return x; }) => "use strict";
assertEq(f(), "use strict");
// "use strict" is not special as the body of an arrow function without braces.
var f = (a = obj => { with (obj) return x; }) => "use strict";
assertEq(f(), "use strict");