summaryrefslogtreecommitdiff
path: root/testsuite/tests/indexed-types/should_fail/T9036.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/indexed-types/should_fail/T9036.hs')
-rw-r--r--testsuite/tests/indexed-types/should_fail/T9036.hs7
1 files changed, 4 insertions, 3 deletions
diff --git a/testsuite/tests/indexed-types/should_fail/T9036.hs b/testsuite/tests/indexed-types/should_fail/T9036.hs
index 550adb4b0a..54af6f6714 100644
--- a/testsuite/tests/indexed-types/should_fail/T9036.hs
+++ b/testsuite/tests/indexed-types/should_fail/T9036.hs
@@ -2,14 +2,15 @@
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE TypeFamilies #-}
-
module T9036 where
+import Data.Kind
+
class UncurryM t where
- type GetMonad t :: * -> *
+ type GetMonad t :: Type -> Type
class Curry a b where
- type Curried a b :: *
+ type Curried a b :: Type
gSimple :: String -> String -> [String]
gSimple = simpleLogger (return ())