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
It took me a while to decipher this error message. I think it treats -. as the beginning of a negative floating point.
-.
julia> -.((1, 2)) ERROR: syntax: numeric constant "-." cannot be implicitly multiplied because it ends with "."
Would be nice if it said something more useful like "-.(...)" is ambiguous, use "(-).(...)" for broadcasting.
"-.(...)" is ambiguous, use "(-).(...)" for broadcasting
Same thing happens with +, but other unary operators like ~ have just as weird errors:
+
~
julia> ~.((1, 2)) ERROR: syntax: invalid identifier name "."
The text was updated successfully, but these errors were encountered:
Oops, noticed it's a dup of #22498.
Sorry, something went wrong.
No branches or pull requests
It took me a while to decipher this error message. I think it treats
-.
as the beginning of a negative floating point.Would be nice if it said something more useful like
"-.(...)" is ambiguous, use "(-).(...)" for broadcasting
.Same thing happens with
+
, but other unary operators like~
have just as weird errors:The text was updated successfully, but these errors were encountered: