aboutsummaryrefslogtreecommitdiff
path: root/tests/pos
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-09 16:04:19 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-09 16:04:19 +0200
commitd9b224102c576150fc4791bf639a7aa36e5f8337 (patch)
tree819f558f1c0e6e3caf2dc8320b3da32682e1ff9f /tests/pos
parentf73d46adabe4195f4a68defd2c82382f37f1b7ee (diff)
downloaddotty-d9b224102c576150fc4791bf639a7aa36e5f8337.tar.gz
dotty-d9b224102c576150fc4791bf639a7aa36e5f8337.tar.bz2
dotty-d9b224102c576150fc4791bf639a7aa36e5f8337.zip
Make all dotty tests end in newline
Diffstat (limited to 'tests/pos')
-rw-r--r--tests/pos/blockescapes.scala2
-rw-r--r--tests/pos/inferred.scala2
-rw-r--r--tests/pos/packageobject.scala2
-rw-r--r--tests/pos/selftypes.scala2
-rw-r--r--tests/pos/sigs.scala2
-rw-r--r--tests/pos/tailcall/i321.scala2
-rw-r--r--tests/pos/tailcall/tailcall.scala2
-rw-r--r--tests/pos/tryTyping.scala2
-rw-r--r--tests/pos/typedIdents.scala2
-rw-r--r--tests/pos/typedapply.scala2
-rw-r--r--tests/pos/varargs.scala2
11 files changed, 11 insertions, 11 deletions
diff --git a/tests/pos/blockescapes.scala b/tests/pos/blockescapes.scala
index 68ce37ed3..0b6a3ca03 100644
--- a/tests/pos/blockescapes.scala
+++ b/tests/pos/blockescapes.scala
@@ -8,4 +8,4 @@ object blockescapes {
trait T
def m0: T = { object Foo { class Bar extends T } ; new Foo.Bar }
-} \ No newline at end of file
+}
diff --git a/tests/pos/inferred.scala b/tests/pos/inferred.scala
index 87bbd9473..311e56a50 100644
--- a/tests/pos/inferred.scala
+++ b/tests/pos/inferred.scala
@@ -55,4 +55,4 @@ object Inferred {
val ints3 = new CONS[Int](1, NIL)
val ints4 = new CONS(1, NIL)
-} \ No newline at end of file
+}
diff --git a/tests/pos/packageobject.scala b/tests/pos/packageobject.scala
index 1a373c248..e88069755 100644
--- a/tests/pos/packageobject.scala
+++ b/tests/pos/packageobject.scala
@@ -2,4 +2,4 @@ package test {
object `package` {}
}
-package object foo {} \ No newline at end of file
+package object foo {}
diff --git a/tests/pos/selftypes.scala b/tests/pos/selftypes.scala
index 243405f77..4bd0dd752 100644
--- a/tests/pos/selftypes.scala
+++ b/tests/pos/selftypes.scala
@@ -17,4 +17,4 @@ object selftypes {
class AB extends A with B
-} \ No newline at end of file
+}
diff --git a/tests/pos/sigs.scala b/tests/pos/sigs.scala
index 4c1973cad..4af4bda90 100644
--- a/tests/pos/sigs.scala
+++ b/tests/pos/sigs.scala
@@ -39,4 +39,4 @@ object sigs {
}
-} \ No newline at end of file
+}
diff --git a/tests/pos/tailcall/i321.scala b/tests/pos/tailcall/i321.scala
index 595e13910..daa078dd5 100644
--- a/tests/pos/tailcall/i321.scala
+++ b/tests/pos/tailcall/i321.scala
@@ -23,4 +23,4 @@ class i321[T >: Null <: AnyRef] {
final def go2[U >: Null <: AnyRef](t: i321[U]): Int = t.go2(this)
-} \ No newline at end of file
+}
diff --git a/tests/pos/tailcall/tailcall.scala b/tests/pos/tailcall/tailcall.scala
index 1e05840ea..faa707e18 100644
--- a/tests/pos/tailcall/tailcall.scala
+++ b/tests/pos/tailcall/tailcall.scala
@@ -6,4 +6,4 @@ class tailcall {
class TypedApply[T2]{
private def firstDiff[T <: TypedApply[T2]](xs: List[T]): Int = firstDiff(xs)
-} \ No newline at end of file
+}
diff --git a/tests/pos/tryTyping.scala b/tests/pos/tryTyping.scala
index a2aeb17c8..cfa2c7a77 100644
--- a/tests/pos/tryTyping.scala
+++ b/tests/pos/tryTyping.scala
@@ -17,4 +17,4 @@ object tryTyping{
try{???; 1}
catch a3(3)
}
-} \ No newline at end of file
+}
diff --git a/tests/pos/typedIdents.scala b/tests/pos/typedIdents.scala
index f6c88379b..650766ec0 100644
--- a/tests/pos/typedIdents.scala
+++ b/tests/pos/typedIdents.scala
@@ -31,4 +31,4 @@ package P { // `X' bound by package clause
}
}
}
-} \ No newline at end of file
+}
diff --git a/tests/pos/typedapply.scala b/tests/pos/typedapply.scala
index e28e59d4f..8496d528b 100644
--- a/tests/pos/typedapply.scala
+++ b/tests/pos/typedapply.scala
@@ -8,4 +8,4 @@ object typedapply {
foo[Int, String] _
-} \ No newline at end of file
+}
diff --git a/tests/pos/varargs.scala b/tests/pos/varargs.scala
index 3739636b8..616456616 100644
--- a/tests/pos/varargs.scala
+++ b/tests/pos/varargs.scala
@@ -10,4 +10,4 @@ object varargs {
g(Nil: _*)
g(1)
g()
-} \ No newline at end of file
+}