-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
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
ERROR: syntax: extra token ".." after end of expression #5715
Comments
I'm not sure what the precedence or associativity of |
People liked this operator in the past as variant of |
FWIW it is really about more than one julia> ..(a, b) = a * b
.. (generic function with 1 method)
julia> "a"*"b".."c"
"abc"
julia> "a".."b"*"c"
"abc"
julia> "a".."b"*"c".."d"
ERROR: syntax: extra token ".." after end of expression. |
So this one is still true in 1.8.3
|
The consequence of being forced to be explicit |
Yeah, fair. It certainly doesn't seem to have been causing much trouble in the intervening years. I'll close as not planned then, but if folks disagree they should feel free to undo. |
Maybe linked to the #2614 fix?
The text was updated successfully, but these errors were encountered: