summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/T4175.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghci/scripts/T4175.hs')
-rw-r--r--testsuite/tests/ghci/scripts/T4175.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/ghci/scripts/T4175.hs b/testsuite/tests/ghci/scripts/T4175.hs
index 0fc53e76e9..ef34a4891d 100644
--- a/testsuite/tests/ghci/scripts/T4175.hs
+++ b/testsuite/tests/ghci/scripts/T4175.hs
@@ -2,7 +2,7 @@
{-# LANGUAGE ConstraintKinds #-}
module T4175 where
-import GHC.Exts
+import Data.Kind
type family A a b
type instance A Int Int = ()
@@ -30,5 +30,5 @@ class Z a
class F (a :: Constraint)
instance F (Z a)
-class G (a :: * -> *)
+class G (a :: Type -> Type)
instance G B