summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/should_fail/T16013.script
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghci/should_fail/T16013.script')
-rw-r--r--testsuite/tests/ghci/should_fail/T16013.script5
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/tests/ghci/should_fail/T16013.script b/testsuite/tests/ghci/should_fail/T16013.script
new file mode 100644
index 0000000000..287de60656
--- /dev/null
+++ b/testsuite/tests/ghci/should_fail/T16013.script
@@ -0,0 +1,5 @@
+:set -XTypeFamilies -XPolyKinds
+type family Id (a :: k)
+type instance Id a = a
+type Foo x = Maybe
+:kind! Id Foo