summaryrefslogtreecommitdiff
path: root/testsuite/tests/saks/should_fail/saks_fail015.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/saks/should_fail/saks_fail015.hs')
-rw-r--r--testsuite/tests/saks/should_fail/saks_fail015.hs11
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/tests/saks/should_fail/saks_fail015.hs b/testsuite/tests/saks/should_fail/saks_fail015.hs
new file mode 100644
index 0000000000..78ee15e314
--- /dev/null
+++ b/testsuite/tests/saks/should_fail/saks_fail015.hs
@@ -0,0 +1,11 @@
+{-# LANGUAGE StandaloneKindSignatures #-}
+{-# LANGUAGE ScopedTypeVariables #-}
+{-# LANGUAGE PolyKinds #-}
+
+module SAKS_Fail015 where
+
+import Data.Kind (Type)
+import Data.Proxy (Proxy)
+
+type T :: forall k. k -> Type
+data T a = MkT (Proxy (a :: k)) -- 'k' is not brought into scope by ScopedTypeVariables