From: lewie Date: Tue, 17 Apr 2001 21:44:16 +0000 (+0000) Subject: [project @ 2001-04-17 21:44:16 by lewie] X-Git-Tag: Approximately_9120_patches~2140 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=d923f167d8a1120c0e918330b44740f8f12b7f45;p=ghc-hetmet.git [project @ 2001-04-17 21:44:16 by lewie] This is the test I meant to put in ... ;-) --- diff --git a/ghc/tests/typecheck/should_fail/tcfail092.hs b/ghc/tests/typecheck/should_fail/tcfail092.hs new file mode 100644 index 0000000..be3984c --- /dev/null +++ b/ghc/tests/typecheck/should_fail/tcfail092.hs @@ -0,0 +1,5 @@ +-- !!! Illegal conflicting parallel bindings + +module ShouldFail where + +xys = [ () | let a = 13 | let a = 17 ]