summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/T13446.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/typecheck/should_fail/T13446.hs')
-rw-r--r--testsuite/tests/typecheck/should_fail/T13446.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/typecheck/should_fail/T13446.hs b/testsuite/tests/typecheck/should_fail/T13446.hs
index 11a60776f6..b5bd77fcb0 100644
--- a/testsuite/tests/typecheck/should_fail/T13446.hs
+++ b/testsuite/tests/typecheck/should_fail/T13446.hs
@@ -11,10 +11,10 @@
module T13446 where
import Data.Coerce (Coercible)
-import GHC.Exts (Constraint)
+import Data.Kind (Type, Constraint)
import GHC.TypeLits (Symbol)
-data Dict :: Constraint -> * where
+data Dict :: Constraint -> Type where
Dict :: a => Dict a
infixr 9 :-