-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Comparison operators have higher precedence than range operator ..
#22877
Comments
Pull request #21374 (merged) includes several other relevant xrefs. |
cc @dgrunwald |
If someone shows an example of something that (1.) currently parses but also that (2.) intuition dictates shouldn't parse, then the lang team would be more likely to be inspired to assign this a higher priority, due to backwards compatibility concerns. As it is right now, if the main problems are cases where things do not parse that one might like to parse, then that is a potentially interesting problem to tackle, but it is not quite as high priority as resolving one of the many potentially backwards-incompatible issues that we have in front of us. |
triage: P-medium |
What do we define as "parses" here? The parser "parses" all of the given examples --- but each one as a different operation! |
I originally tried to give Giving See #20811 for the original issue about the precedence of |
@insaneinside from a backward compatibility standpoint, the issue is what might accepted by the end-to-end compile. But you make a good point: it might be possible that by implementing the overloaded operators in a particular way, one might be able to construct an example that gets through the compiler with an unexpected parse today.
Update: also, to be pedantic, the first example didn't parse, right? But this others certainly did. |
Triage: no changes. Is this even fixable? |
Perhaps in a new edition? |
This has the effect of causing parse errors and other weirdness when trying to use a range literal in a comparison.
gives us
Huh? Okay, what about this?
So it looks as though the comparison is being reduced before the range.
More fun:
Never mind the fact that ranges don't implement (Partial)Ord -- the precedence is still wrong here, too. Placing the parentheses on the first range instead of the second properly tells us
(although i'd argue that it should also complain about mismatched types here, as well. ;)
The text was updated successfully, but these errors were encountered: