case over signum of Integer returns an incorrect result.
Steps to reproduce
GHCi, version 9.2.0.20210331: https://www.haskell.org/ghc/ :? for helpghci> signum (-1 :: Integer)-1ghci> case signum (-1 :: Integer) of 1 -> "FOO"; -1 -> "OK"; 0 -> "BAR"; _ -> "FAIL""FAIL"
Expected behavior
I would expect the second line to return "OK".
Environment
GHC version used: 9.2.0.20210331
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items
...
Show closed items
Linked items
0
Link issues together to show that they're related or that one is blocking others.
Learn more.
It looks like signum is not essential here, the real issue seems to be case alternatives that differ only in the sign of the value:
λ> case (-1 :: Integer) of 1 -> "BAD1"; -1 -> "OK"; _ -> "BAD2""BAD2"λ> case (-1 :: Integer) of 2 -> "BAD1"; -1 -> "OK"; _ -> "BAD2""OK"λ> case (1 :: Integer) of -1 -> "BAD1"; 1 -> "OK"; _ -> "BAD2"<interactive>:17:24: warning: [-Woverlapping-patterns] Pattern match is redundant In a case alternative: -1 -> ...<interactive>:17:49: warning: [-Woverlapping-patterns] Pattern match is redundant In a case alternative: _ -> ..."BAD2"
It's weird. I can't test right now but perhaps an issue with the pattern match checker. Or perhaps try enabling NegativeLiterals to see if it changes anything?