leftaroundabout / constrained-categories

Constrained versions of the Haskell standard category-theory-based type classes, using ConstraintKinds
http://hackage.haskell.org/package/constrained-categories
GNU General Public License v3.0
20 stars 6 forks source link

Fixing MonadFail bug due to the change in ghc-8.8.1 #3

Closed AliceRixte closed 4 years ago

AliceRixte commented 4 years ago

Build failed with ghc version 8.10.1 This was due to a change that took place in ghc 8.8.1 (release note).

I quickly fixed it so that everything builds again. Though I am not an expert so please be careful with this.

leftaroundabout commented 4 years ago

Thanks, it's good but I like to also keep compatibility with older base versions. Do you agree with https://github.com/leftaroundabout/constrained-categories/tree/compatibility/monadfail ?

AliceRixte commented 4 years ago

Everything works fine for me with the monadfail branch. Thank you !