summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/tcfail168.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/typecheck/should_fail/tcfail168.stderr')
-rw-r--r--testsuite/tests/typecheck/should_fail/tcfail168.stderr18
1 files changed, 9 insertions, 9 deletions
diff --git a/testsuite/tests/typecheck/should_fail/tcfail168.stderr b/testsuite/tests/typecheck/should_fail/tcfail168.stderr
index 5f4656b13f..4ec71aaa1d 100644
--- a/testsuite/tests/typecheck/should_fail/tcfail168.stderr
+++ b/testsuite/tests/typecheck/should_fail/tcfail168.stderr
@@ -5,14 +5,14 @@ tcfail168.hs:7:11: error:
• Probable cause: ‘putChar’ is applied to too few arguments
In a stmt of a 'do' block: putChar
In the expression:
- do { putChar;
- putChar 'a';
- putChar 'a';
- putChar 'a';
- .... }
+ do putChar
+ putChar 'a'
+ putChar 'a'
+ putChar 'a'
+ ....
In an equation for ‘foo’:
foo
- = do { putChar;
- putChar 'a';
- putChar 'a';
- .... }
+ = do putChar
+ putChar 'a'
+ putChar 'a'
+ ....