summaryrefslogtreecommitdiff
path: root/testsuite/tests/deriving/should_run/drvrun005.hs
diff options
context:
space:
mode:
authorThomas Miedema <thomasmiedema@gmail.com>2016-06-18 22:44:19 +0200
committerThomas Miedema <thomasmiedema@gmail.com>2016-06-20 16:22:07 +0200
commit5b03dc69389dc387b922c589ab9a8b92079e6a96 (patch)
tree807db4d3e26cc078cab86def2df40afcd59803db /testsuite/tests/deriving/should_run/drvrun005.hs
parent915e07c33b143126e3c8de1d2ec22ccc709a9a24 (diff)
downloadhaskell-5b03dc69389dc387b922c589ab9a8b92079e6a96.tar.gz
Testsuite: tabs -> spaces [skip ci]
Diffstat (limited to 'testsuite/tests/deriving/should_run/drvrun005.hs')
-rw-r--r--testsuite/tests/deriving/should_run/drvrun005.hs12
1 files changed, 6 insertions, 6 deletions
diff --git a/testsuite/tests/deriving/should_run/drvrun005.hs b/testsuite/tests/deriving/should_run/drvrun005.hs
index a4ef060a6a..03a12042a4 100644
--- a/testsuite/tests/deriving/should_run/drvrun005.hs
+++ b/testsuite/tests/deriving/should_run/drvrun005.hs
@@ -5,13 +5,13 @@ module Main where
an operator, it is defaulted to being "infixl 9".
OLD: The derived Read instances for data types containing
- left-assoc constructors produces code that causes
- non-termination if you use 'read' to evaluate them
- ( (head (reads x)) is cool tho.)
+ left-assoc constructors produces code that causes
+ non-termination if you use 'read' to evaluate them
+ ( (head (reads x)) is cool tho.)
- ==> The inferred assoc for :++ below left & the derived
- Read instance should fail to terminate (with ghc-4.xx,
- this is exemplified by having the stack overflow.)
+ ==> The inferred assoc for :++ below left & the derived
+ Read instance should fail to terminate (with ghc-4.xx,
+ this is exemplified by having the stack overflow.)
NEW: the new H98 spec says that we ignore associativity when
parsing, so it terminates fine