diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2016-06-18 22:44:19 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2016-06-20 16:22:07 +0200 |
commit | a7160faafd44d64c2b20a4cc65e80136a93e1aaa (patch) | |
tree | c0fa999a4696a5a05e861b0eacfcd92358d77a48 /testsuite/tests/ghci/should_run | |
parent | 5b03dc69389dc387b922c589ab9a8b92079e6a96 (diff) | |
download | haskell-a7160faafd44d64c2b20a4cc65e80136a93e1aaa.tar.gz |
Testsuite: tabs -> spaces [skip ci]
Diffstat (limited to 'testsuite/tests/ghci/should_run')
-rw-r--r-- | testsuite/tests/ghci/should_run/ghcirun001.hs | 6 |
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) |