We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Array{T, 0}
Minimal example:
julia> fill(1) + fill(2) 3
This causes pathologies such as
julia> fill(1) + fill(2) + fill(3) 6 julia> (fill(1) + fill(2)) + fill(3) ERROR: MethodError: no method matching +(::Int64, ::Array{Int64,0})
(In my opinion it should be possible to add an Int64 to an Array{Int64, 0}, but that's a separate issue.)
Int64
Array{Int64, 0}
The text was updated successfully, but these errors were encountered:
Comment out the zero-dimensional array test until JuliaLang/julia#32115…
c97bc4b
… is resolved
Thanks for the reminder. This is a dup of #28866, but this prompted me to propose a fix for it in #32122.
Sorry, something went wrong.
No branches or pull requests
Minimal example:
This causes pathologies such as
(In my opinion it should be possible to add an
Int64
to anArray{Int64, 0}
, but that's a separate issue.)The text was updated successfully, but these errors were encountered: