blob: b4ecebb84220a8895d15f0c4171e7d1a68dd0e08 [file] [log] [blame]
// return exits the innermost enclosing arrow (not an enclosing function)
function f() {
var g = x => { return !x; };
return "f:" + g(true);
}
assertEq(f(), "f:false");