diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2016-02-22 21:32:51 +0100 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2016-02-23 12:27:47 +0100 |
commit | 754a2f2bb7416bd7fe453ba7bcb7c089f5ef3b8f (patch) | |
tree | 45bc14d7e354e9b985a33ba3c7242fd490e1e025 /testsuite/tests/parser | |
parent | 8626ac91a3cac028bbe742f07a1ce9fb598589f6 (diff) | |
download | haskell-754a2f2bb7416bd7fe453ba7bcb7c089f5ef3b8f.tar.gz |
Testsuite: delete Windows line endings [skip ci] (#11631)
Diffstat (limited to 'testsuite/tests/parser')
-rw-r--r-- | testsuite/tests/parser/should_compile/read062.hs | 32 | ||||
-rw-r--r-- | testsuite/tests/parser/should_fail/readFail031.hs | 8 | ||||
-rw-r--r-- | testsuite/tests/parser/should_fail/readFail042.hs | 24 | ||||
-rw-r--r-- | testsuite/tests/parser/should_fail/readFail043.hs | 28 | ||||
-rw-r--r-- | testsuite/tests/parser/unicode/T1744.hs | 6 |
5 files changed, 49 insertions, 49 deletions
diff --git a/testsuite/tests/parser/should_compile/read062.hs b/testsuite/tests/parser/should_compile/read062.hs index d324111de5..3d816a28e2 100644 --- a/testsuite/tests/parser/should_compile/read062.hs +++ b/testsuite/tests/parser/should_compile/read062.hs @@ -1,16 +1,16 @@ -{-# OPTIONS_GHC -XTransformListComp #-}
-
-module Foo where
-
-import Data.List
-import GHC.Exts
-
-foo = [ ()
- | x <- [1..10]
- , then take 5
- , then sortWith by x
- , then group by x using groupWith
- , then group using inits
- , then group by x using groupWith
- ]
-
+{-# OPTIONS_GHC -XTransformListComp #-} + +module Foo where + +import Data.List +import GHC.Exts + +foo = [ () + | x <- [1..10] + , then take 5 + , then sortWith by x + , then group by x using groupWith + , then group using inits + , then group by x using groupWith + ] + diff --git a/testsuite/tests/parser/should_fail/readFail031.hs b/testsuite/tests/parser/should_fail/readFail031.hs index d07f8979a6..979d3ceda0 100644 --- a/testsuite/tests/parser/should_fail/readFail031.hs +++ b/testsuite/tests/parser/should_fail/readFail031.hs @@ -1,4 +1,4 @@ -module ShouldFail where
-
-class Foo o where
- (:+) :: o -> o -> o
+module ShouldFail where + +class Foo o where + (:+) :: o -> o -> o diff --git a/testsuite/tests/parser/should_fail/readFail042.hs b/testsuite/tests/parser/should_fail/readFail042.hs index bdd9f97094..7849e7f023 100644 --- a/testsuite/tests/parser/should_fail/readFail042.hs +++ b/testsuite/tests/parser/should_fail/readFail042.hs @@ -1,12 +1,12 @@ --- Check error message for transforms if we don't have the right extension turned on
-
-module Foo where
-
-import Data.List
-import GHC.Exts
-
-foo = [ ()
- | x <- [1..10]
- , then take 5
- , then sortWith by x
- ]
\ No newline at end of file +-- Check error message for transforms if we don't have the right extension turned on + +module Foo where + +import Data.List +import GHC.Exts + +foo = [ () + | x <- [1..10] + , then take 5 + , then sortWith by x + ] diff --git a/testsuite/tests/parser/should_fail/readFail043.hs b/testsuite/tests/parser/should_fail/readFail043.hs index 65e00b36bd..c88e44baa7 100644 --- a/testsuite/tests/parser/should_fail/readFail043.hs +++ b/testsuite/tests/parser/should_fail/readFail043.hs @@ -1,14 +1,14 @@ --- Check error message for groups if we don't have the right extension turned on
-
-module Foo where
-
-import Data.List
-import GHC.Exts
-
-foo = [ ()
- | x <- [1..10]
- , then group by x using groupWith
- , then group by x using groupWith
- , then group using inits
- ]
-
+-- Check error message for groups if we don't have the right extension turned on + +module Foo where + +import Data.List +import GHC.Exts + +foo = [ () + | x <- [1..10] + , then group by x using groupWith + , then group by x using groupWith + , then group using inits + ] + diff --git a/testsuite/tests/parser/unicode/T1744.hs b/testsuite/tests/parser/unicode/T1744.hs index 90273741da..5fd6687b13 100644 --- a/testsuite/tests/parser/unicode/T1744.hs +++ b/testsuite/tests/parser/unicode/T1744.hs @@ -1,3 +1,3 @@ -main = print hello
--- test that layout has not been screwed up
-hello = "こんにちは 世界"
+main = print hello +-- test that layout has not been screwed up +hello = "こんにちは 世界" |