blob: 95e34a099ff62b8bf596a5e6e619cb28d98b334f [file] [log] [blame]
// 'arguments' is lexically scoped in genexpr in function.
function f() {
assertEq((arguments for (x of [0])).next(),
(arguments for (y of [1])).next());
}
f();