Is there hidden logic behind this command that I don't see, or did I bump into a genuine bug here? v0.4.5
julia> x = Array{Int64}()
0-dimensional Array{Int64,0}:
47917330527848
julia> for i in x; println(i); end
47917330527848
julia> println(x)
47917330527848
julia> print(typeof(x))
Array{Int64,0}
