blob: b89d979e2d28ad7b795f4f06b23f194ec0d2e6c9 [file] [log] [blame]
// return from a block function works when there is no other enclosing function
var f = a => {
if (a)
return a + 1;
throw "FAIL";
};
assertEq(f(1), 2);