-
Notifications
You must be signed in to change notification settings - Fork 13
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
Doesn't seem to work with GHC 9.4.1 #141
Comments
After landing #127, the only other change that needs to be made (AFAICT) is enabling diff --git a/src/Data/Parameterized/Fin.hs b/src/Data/Parameterized/Fin.hs
index 46caafb..eaa48ce 100644
--- a/src/Data/Parameterized/Fin.hs
+++ b/src/Data/Parameterized/Fin.hs
@@ -6,6 +6,7 @@
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TypeApplications #-}
{-# LANGUAGE TypeOperators #-}
+{-# LANGUAGE UndecidableInstances #-}
{-|
Copyright : (c) Galois, Inc 2021 |
RyanGlScott
added a commit
that referenced
this issue
Nov 21, 2022
The only change needed is to enable `UndecidableInstances` in `Data.Parameterized.Fin`, which is necessary due to GHC 9.4 being pickier about undecidable instance checking. See [this section](https://gitlab.haskell.org/ghc/ghc/-/wikis/migration/9.4?version_id=24540b698481cf2b0bd11029b58eaddc0fbfbb31#stricter-undecidableinstances-checking) of the GHC 9.4 Migration Guide. Fixes #141.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I get the following error:
The text was updated successfully, but these errors were encountered: