summaryrefslogtreecommitdiff
path: root/testsuite/tests/codeGen/should_run/cgrun008.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
commita7160faafd44d64c2b20a4cc65e80136a93e1aaa (patch)
treec0fa999a4696a5a05e861b0eacfcd92358d77a48 /testsuite/tests/codeGen/should_run/cgrun008.hs
parent5b03dc69389dc387b922c589ab9a8b92079e6a96 (diff)
downloadhaskell-a7160faafd44d64c2b20a4cc65e80136a93e1aaa.tar.gz
Testsuite: tabs -> spaces [skip ci]
Diffstat (limited to 'testsuite/tests/codeGen/should_run/cgrun008.hs')
-rw-r--r--testsuite/tests/codeGen/should_run/cgrun008.hs10
1 files changed, 5 insertions, 5 deletions
diff --git a/testsuite/tests/codeGen/should_run/cgrun008.hs b/testsuite/tests/codeGen/should_run/cgrun008.hs
index 1713b4834e..f7c6b045f4 100644
--- a/testsuite/tests/codeGen/should_run/cgrun008.hs
+++ b/testsuite/tests/codeGen/should_run/cgrun008.hs
@@ -2,11 +2,11 @@ main = print (length comp_list)
where
comp_list :: [(Int,Int)]
comp_list = [ (elem1,elem2)
- | elem1 <- given_list,
- elem2 <- given_list,
- elem1 >= (4::Int),
- elem2 < (3::Int)
- ]
+ | elem1 <- given_list,
+ elem2 <- given_list,
+ elem1 >= (4::Int),
+ elem2 < (3::Int)
+ ]
given_list :: [Int]
given_list = [1,2,3,4,5,6,7,8,9]