summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Peyton Jones <simonpj@microsoft.com>2022-11-21 14:39:41 +0000
committerSimon Peyton Jones <simonpj@microsoft.com>2022-11-21 14:39:41 +0000
commit7d9f532414d09835fef720faf2b7bd736aacd3b4 (patch)
tree3fa91c4de38b52069478c042ce75ee9db68cd9dd
parent204774e3fcee55df79d7a92398dc4b8ccce5fee1 (diff)
downloadhaskell-wip/T22439.tar.gz
Add missing import to T22439wip/T22439
-rw-r--r--testsuite/tests/simplCore/should_compile/T22439.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/simplCore/should_compile/T22439.hs b/testsuite/tests/simplCore/should_compile/T22439.hs
index b7ecccc27c..05d81f61d4 100644
--- a/testsuite/tests/simplCore/should_compile/T22439.hs
+++ b/testsuite/tests/simplCore/should_compile/T22439.hs
@@ -8,7 +8,7 @@ module Bug where
import qualified Data.Text.Lazy as T
import GHC.Exts (IsList(..))
-import Prelude (Bool, Char, otherwise)
+import Prelude (Bool, Char, otherwise, type (~) )
class (IsList full, item ~ Item full) => ListLike full item | full -> item where
empty :: full