summaryrefslogtreecommitdiff
path: root/testsuite/tests
diff options
context:
space:
mode:
authorNingning Xie <xnningxie@gmail.com>2019-04-29 22:57:37 +0800
committerÖmer Sinan Ağacan <omeragacan@gmail.com>2019-05-03 21:54:50 +0300
commit9b59e126f541a7dadd5157334531d4bc68a5445b (patch)
treeda0fcd1f19c3c19ef33b2573d5cc89a539d3aa60 /testsuite/tests
parent52fc2719b93ab39be3e52eba531ee173b9134183 (diff)
downloadhaskell-9b59e126f541a7dadd5157334531d4bc68a5445b.tar.gz
Only skip decls with CUSKs with PolyKinds on (fix #16609)
Diffstat (limited to 'testsuite/tests')
-rw-r--r--testsuite/tests/typecheck/should_compile/T16609.hs4
-rw-r--r--testsuite/tests/typecheck/should_compile/all.T1
2 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/tests/typecheck/should_compile/T16609.hs b/testsuite/tests/typecheck/should_compile/T16609.hs
new file mode 100644
index 0000000000..20cfbf479e
--- /dev/null
+++ b/testsuite/tests/typecheck/should_compile/T16609.hs
@@ -0,0 +1,4 @@
+module T16609 where
+
+data T1 a = MkT1 T2
+data T2 = MkT2 (T1 Maybe)
diff --git a/testsuite/tests/typecheck/should_compile/all.T b/testsuite/tests/typecheck/should_compile/all.T
index 9d8f905bf3..ffcdc93a73 100644
--- a/testsuite/tests/typecheck/should_compile/all.T
+++ b/testsuite/tests/typecheck/should_compile/all.T
@@ -671,3 +671,4 @@ test('T16204b', normal, compile, [''])
test('T16225', normal, compile, [''])
test('T13951', normal, compile, [''])
test('T16411', normal, compile, [''])
+test('T16609', normal, compile, ['']) \ No newline at end of file