Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
To avoid this warning: main/Main.hs:54:3: warning: [-Woverlapping-patterns] Pattern match is redundant In a case alternative: Just ver -> ... | 54 | Just ver -> unpack ver | ^^^^^^^^^^^^^^^^^^^^^^ Which happens because to the compiler, the Template Haskell expression looks like a constant, always making one pattern redundant. It won't dig into that if we use a function on it though :)
- Loading branch information