summaryrefslogtreecommitdiff
path: root/testsuite/tests/module/mod27.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/module/mod27.hs')
-rw-r--r--testsuite/tests/module/mod27.hs4
1 files changed, 4 insertions, 0 deletions
diff --git a/testsuite/tests/module/mod27.hs b/testsuite/tests/module/mod27.hs
new file mode 100644
index 0000000000..394fa2341d
--- /dev/null
+++ b/testsuite/tests/module/mod27.hs
@@ -0,0 +1,4 @@
+module ShouldFail where
+-- !!! Testing recursive type synonyms
+type T1 = (Int,T2)
+type T2 = (Int,T1)