diff options
Diffstat (limited to 'testsuite/tests/parser/should_fail/readFail003.hs')
-rw-r--r-- | testsuite/tests/parser/should_fail/readFail003.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/tests/parser/should_fail/readFail003.hs b/testsuite/tests/parser/should_fail/readFail003.hs new file mode 100644 index 0000000000..8595312137 --- /dev/null +++ b/testsuite/tests/parser/should_fail/readFail003.hs @@ -0,0 +1,8 @@ +-- !!! Irrefutable patterns + guards +module Read003 where + +~(a,b,c) | nullity b = a + | nullity c = a + | otherwise = a + where + nullity = null |