opened 06:47PM - 15 Jan 22 UTC
iteration
```jl
for z in zip()
@show z
end
```
is an infinite loop, printing `z =… ()` over and over.
Arguably, it should execute once with `z = ()`, or maybe throw an error, or maybe execute zero times (like Python), but in any case the current behavior seems bad.