Hi, Is this a parsing "error" worth reporting?
julia> randn(3, 3)\1:3
ERROR: MethodError: no method matching /(::Int64, ::Array{Float64,2})
Closest candidates are:
/(::Integer, ::Integer)
/(::Real, ::Complex{T<:Real})
/(::Union{Int16,Int32,Int64,Int8}, ::BigFloat)
...
[inlined code] from ./arraymath.jl:347
in \(::Array{Float64,2}, ::Int64) at ./operators.jl:270
in eval(::Module, ::Any) at ./boot.jl:226
# although
julia> randn(3, 3)\(1:3)
3-element Array{Float64,1}:
542.05
-506.452
-1484.16
