-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build fails using GHC 9.0.1 #9
Comments
This is due to the simplified subsumption, a simple (but ugly) fix is to eta expand diff --git a/src/Control/Ev/Util.hs b/src/Control/Ev/Util.hs
index 035a7cf..020e75b 100644
--- a/src/Control/Ev/Util.hs
+++ b/src/Control/Ev/Util.hs
@@ -157,11 +157,11 @@ chooseAll
}
instance (Choose :? e) => Alternative (Eff e) where
- empty = perform none ()
+ empty = perform (\h -> none h) ()
m1 <|> m2 = do x <- perform choose 2
if (x==1) then m1 else m2
instance (Choose :? e) => MonadPlus (Eff e) where
- mzero = perform none ()
+ mzero = perform (\h -> none h) ()
mplus m1 m2 = do x <- perform choose 2
if (x==1) then m1 else m2 |
Thanks for the issue report! I will take a look soon. |
This is indeed due to simplified subsumption. It's a bit annoying but there seems to be no solution other than manual eta-expansion. I added an eta-expanded version of |
I tried to build this library with the latest Stackage Nightly snapshot (
nightly-2021-07-01
) and got the following errors:The text was updated successfully, but these errors were encountered: