diff options
Diffstat (limited to 'testsuite/tests/saks/should_fail/T18863a.hs')
-rw-r--r-- | testsuite/tests/saks/should_fail/T18863a.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/tests/saks/should_fail/T18863a.hs b/testsuite/tests/saks/should_fail/T18863a.hs new file mode 100644 index 0000000000..3e7e95047e --- /dev/null +++ b/testsuite/tests/saks/should_fail/T18863a.hs @@ -0,0 +1,9 @@ +{-# Language PolyKinds #-} +{-# Language RankNTypes #-} +{-# Language StandaloneKindSignatures #-} +module T18863a where + +import Data.Kind + +type IDa :: forall i -> i -> Type +data IDa :: forall i. i -> Type |