summaryrefslogtreecommitdiff
path: root/testsuite/tests/polykinds/T14555.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/polykinds/T14555.hs')
-rw-r--r--testsuite/tests/polykinds/T14555.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/polykinds/T14555.hs b/testsuite/tests/polykinds/T14555.hs
index 0ab71b1b76..7f37a5ec9c 100644
--- a/testsuite/tests/polykinds/T14555.hs
+++ b/testsuite/tests/polykinds/T14555.hs
@@ -1,10 +1,10 @@
-{-# Language TypeInType #-}
{-# Language TypeOperators, DataKinds, PolyKinds, GADTs #-}
+
module T14555 where
import Data.Kind
-import GHC.Types (TYPE)
+import GHC.Types (TYPE, Type)
data Exp :: [TYPE rep] -> TYPE rep -> Type where
--data Exp (x :: [TYPE rep]) (y :: TYPE rep) where