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