summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/should_run/ghcirun001.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghci/should_run/ghcirun001.hs')
-rw-r--r--testsuite/tests/ghci/should_run/ghcirun001.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/tests/ghci/should_run/ghcirun001.hs b/testsuite/tests/ghci/should_run/ghcirun001.hs
index af193ecb97..be893bcf47 100644
--- a/testsuite/tests/ghci/should_run/ghcirun001.hs
+++ b/testsuite/tests/ghci/should_run/ghcirun001.hs
@@ -4,7 +4,7 @@ module Main where
-- libraries/base/GHC/Base.lhs for the fix.
data FourArrow = A | B | C | D | E | ABE | AC | BD | CDE
- deriving (Eq)
+ deriving (Eq)
dom E = ABE
@@ -24,7 +24,7 @@ bceFour f g
| dom f == dom g && cod f == cod g
= "it works"
| otherwise = error ("Four.bceFour: precondition fails:"
- ++ "arrows not parallel"
- ++ "\n")
+ ++ "arrows not parallel"
+ ++ "\n")
main = print (bceFour E E)