1 2 3 4 5 6 7 8 9 10 11
function f() { return 2; } function g(o) { with (o) { var f = function() { return 4; } } return f(); } assertEq(g({}), 4);