Source code
Revision control
Copy as Markdown
Other Tools
// Note: Ion/Warp have known issues with function.arguments. See bug 1626294.
function f(y) {
y = 1;
assertEq(arguments.callee.arguments[0], 1);
return () => y;
}
f(0);