summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Miedema <thomasmiedema@gmail.com>2016-02-15 23:20:56 +0100
committerThomas Miedema <thomasmiedema@gmail.com>2016-02-16 12:04:19 +0100
commited69b215018fb34d70ed8e11166ce970ff6bfe74 (patch)
tree75649a7a795837617b143f24429f43e419edfafa
parent3c39bec12e1abfae911a451d3dfb0039b943819d (diff)
downloadhaskell-ed69b215018fb34d70ed8e11166ce970ff6bfe74.tar.gz
Add missing newlines at end of file [skip ci]
-rw-r--r--testsuite/tests/module/mod48.hs2
-rw-r--r--testsuite/tests/module/mod50.hs2
-rw-r--r--testsuite/tests/module/mod51.hs2
-rw-r--r--testsuite/tests/module/mod52.hs2
-rw-r--r--testsuite/tests/module/mod59.hs2
-rw-r--r--testsuite/tests/module/mod60.hs2
-rw-r--r--testsuite/tests/module/mod61.hs2
-rw-r--r--testsuite/tests/warnings/should_compile/T9178.hs2
8 files changed, 8 insertions, 8 deletions
diff --git a/testsuite/tests/module/mod48.hs b/testsuite/tests/module/mod48.hs
index 681d356e2e..04bde658e3 100644
--- a/testsuite/tests/module/mod48.hs
+++ b/testsuite/tests/module/mod48.hs
@@ -2,4 +2,4 @@
module M where
class C a where
x,y :: a
- (x,y) = error "foo" \ No newline at end of file
+ (x,y) = error "foo"
diff --git a/testsuite/tests/module/mod50.hs b/testsuite/tests/module/mod50.hs
index 5f26b8d487..aa634a23a2 100644
--- a/testsuite/tests/module/mod50.hs
+++ b/testsuite/tests/module/mod50.hs
@@ -1,3 +1,3 @@
-- !!! Default decl for non-method
module M where
-data T = C deriving (Foo) \ No newline at end of file
+data T = C deriving (Foo)
diff --git a/testsuite/tests/module/mod51.hs b/testsuite/tests/module/mod51.hs
index c3069a6c3e..7ec9d7bb80 100644
--- a/testsuite/tests/module/mod51.hs
+++ b/testsuite/tests/module/mod51.hs
@@ -1,3 +1,3 @@
-- !!! Duplicate derived instance
module M where
-data T = C deriving (Eq,Eq) \ No newline at end of file
+data T = C deriving (Eq,Eq)
diff --git a/testsuite/tests/module/mod52.hs b/testsuite/tests/module/mod52.hs
index c907afe215..a7ce2564f0 100644
--- a/testsuite/tests/module/mod52.hs
+++ b/testsuite/tests/module/mod52.hs
@@ -1,4 +1,4 @@
-- !!! Duplicate derived instance
module M where
data T = C deriving (Eq)
-instance Eq T \ No newline at end of file
+instance Eq T
diff --git a/testsuite/tests/module/mod59.hs b/testsuite/tests/module/mod59.hs
index ecb026e894..5421a73a67 100644
--- a/testsuite/tests/module/mod59.hs
+++ b/testsuite/tests/module/mod59.hs
@@ -1,3 +1,3 @@
-- !!! Malformed pattern (unknown constructor)
module M where
-f K = error "foo" \ No newline at end of file
+f K = error "foo"
diff --git a/testsuite/tests/module/mod60.hs b/testsuite/tests/module/mod60.hs
index 61884850b3..00de41d9c6 100644
--- a/testsuite/tests/module/mod60.hs
+++ b/testsuite/tests/module/mod60.hs
@@ -1,3 +1,3 @@
-- !!! Malformed pattern (arity)
module M where
-f (Left) = error "foo" \ No newline at end of file
+f (Left) = error "foo"
diff --git a/testsuite/tests/module/mod61.hs b/testsuite/tests/module/mod61.hs
index 62fdef2dd3..79abce1701 100644
--- a/testsuite/tests/module/mod61.hs
+++ b/testsuite/tests/module/mod61.hs
@@ -1,3 +1,3 @@
-- !!! Malformed infix expression
module M where
-f a b c = a==b==c \ No newline at end of file
+f a b c = a==b==c
diff --git a/testsuite/tests/warnings/should_compile/T9178.hs b/testsuite/tests/warnings/should_compile/T9178.hs
index 9171381e35..440069f622 100644
--- a/testsuite/tests/warnings/should_compile/T9178.hs
+++ b/testsuite/tests/warnings/should_compile/T9178.hs
@@ -6,4 +6,4 @@ import T9178DataType
instance Show T9178_Type where
- show _ = undefined \ No newline at end of file
+ show _ = undefined