You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug a + b /= 0 is marked as invalid but the Elm compiler and elm-test don't have an issue with it. By wrapping the math in parens, like (a + b) /= 0, then it parses fine. This also applies to a + b + c /= 0 where wrapping like (a + b +c ) /= 0 fixes it.
Describe the bug
a + b /= 0
is marked as invalid but the Elm compiler and elm-test don't have an issue with it. By wrapping the math in parens, like(a + b) /= 0
, then it parses fine. This also applies toa + b + c /= 0
where wrapping like(a + b +c ) /= 0
fixes it.Additional context
This was originally filed in elm-review jfmengels/elm-review#177 as that's where the bug was found. Elm Slack thread for discussion reference https://elmlang.slack.com/archives/C010RT4D1PT/p1725977809992319.
The text was updated successfully, but these errors were encountered: