[project @ 2001-04-17 21:44:16 by lewie]
authorlewie <unknown>
Tue, 17 Apr 2001 21:44:16 +0000 (21:44 +0000)
committerlewie <unknown>
Tue, 17 Apr 2001 21:44:16 +0000 (21:44 +0000)
This is the test I meant to put in ... ;-)

ghc/tests/typecheck/should_fail/tcfail092.hs [new file with mode: 0644]

diff --git a/ghc/tests/typecheck/should_fail/tcfail092.hs b/ghc/tests/typecheck/should_fail/tcfail092.hs
new file mode 100644 (file)
index 0000000..be3984c
--- /dev/null
@@ -0,0 +1,5 @@
+-- !!! Illegal conflicting parallel bindings
+
+module ShouldFail where
+
+xys = [ () | let a = 13 | let a = 17 ]