We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This is an sscce version of #1259
f x = case x of 1 -> "ok" -1 -> "breaks parsing" _ -> "ok"
Gives a syntax error.
If you swap the -1 pattern with the previous line, everything compiles, so the problem seems to affect only patterns after the first one.
-1