summaryrefslogtreecommitdiff
path: root/testsuite/tests/polykinds/T10134a.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/polykinds/T10134a.hs')
-rw-r--r--testsuite/tests/polykinds/T10134a.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/tests/polykinds/T10134a.hs b/testsuite/tests/polykinds/T10134a.hs
index 0d84d56b5e..9412705e4c 100644
--- a/testsuite/tests/polykinds/T10134a.hs
+++ b/testsuite/tests/polykinds/T10134a.hs
@@ -4,8 +4,9 @@
{-# LANGUAGE TypeOperators #-}
module T10134a where
+import Data.Kind (Type)
import GHC.TypeLits
-data Vec :: Nat -> * -> * where
+data Vec :: Nat -> Type -> Type where
Nil :: Vec 0 a
(:>) :: a -> Vec n a -> Vec (n + 1) a