summaryrefslogtreecommitdiff
path: root/testsuite/tests/saks/should_compile/saks015.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/saks/should_compile/saks015.hs')
-rw-r--r--testsuite/tests/saks/should_compile/saks015.hs9
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/tests/saks/should_compile/saks015.hs b/testsuite/tests/saks/should_compile/saks015.hs
new file mode 100644
index 0000000000..a8cf7204f1
--- /dev/null
+++ b/testsuite/tests/saks/should_compile/saks015.hs
@@ -0,0 +1,9 @@
+{-# LANGUAGE StandaloneKindSignatures #-}
+{-# LANGUAGE PolyKinds, ExplicitForAll #-}
+
+module SAKS_015 where
+
+import Data.Kind (Type)
+
+type T :: forall k -> k -> Type
+data T (k :: Type) (a :: k)