summaryrefslogtreecommitdiff
path: root/testsuite/tests/saks/should_compile/saks033.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/saks/should_compile/saks033.hs')
-rw-r--r--testsuite/tests/saks/should_compile/saks033.hs13
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/tests/saks/should_compile/saks033.hs b/testsuite/tests/saks/should_compile/saks033.hs
new file mode 100644
index 0000000000..cd6451dff0
--- /dev/null
+++ b/testsuite/tests/saks/should_compile/saks033.hs
@@ -0,0 +1,13 @@
+{-# LANGUAGE StandaloneKindSignatures #-}
+{-# LANGUAGE PolyKinds, DataKinds, MultiParamTypeClasses, TypeFamilies, TypeApplications #-}
+
+module SAKS_033 where
+
+import Data.Kind
+import Data.Proxy
+
+type C :: i -> Constraint
+class C (a :: zzz) where
+ type F (a :: zzz) :: Type
+
+type T = F @Bool True