Strict comparison operators should have lower precedence than ordered comparison operators #29
Labels
enhancement
Solving this issue will likely involve adding new logic or components to the codebase.
Milestone
a < b == c < d
should be parsed as(a < b) == (c < d)
.This should be a compile error:
a == b == c
alsoa != b != a
. Simply use parenthesis if you want this kind of thing.The text was updated successfully, but these errors were encountered: