1 2 3 4 5 6
function f(y) { y = 1; assertEq(arguments.callee.arguments[0], 1); return () => y; } f(0);