summaryrefslogtreecommitdiff
path: root/testsuite/tests/parser/should_fail/readFail027.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/parser/should_fail/readFail027.hs')
-rw-r--r--testsuite/tests/parser/should_fail/readFail027.hs15
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/tests/parser/should_fail/readFail027.hs b/testsuite/tests/parser/should_fail/readFail027.hs
new file mode 100644
index 0000000000..9a4754678a
--- /dev/null
+++ b/testsuite/tests/parser/should_fail/readFail027.hs
@@ -0,0 +1,15 @@
+{-# LANGUAGE NoRelaxedLayout #-}
+
+module ShouldFail where
+
+-- Erroneously allowed by GHC 6.2.x
+f x = case x of
+ False -> do
+ { return x; }
+-- this line should close the 'case' context and cause the 'do' to be empty.
+
+-- Update: arguably this should be allowed. The fix to the Haskell
+-- layout rule to allow it is simple: in Section 9.3 in the rules that
+-- govern the introduction of the <n> and {n} psuedo-tokens, we need
+-- to prevent <n> being inserted before {. This could be a simple
+-- side-condition on the rule that introduces <n>.