summaryrefslogtreecommitdiff
path: root/test/files/run/concat-two-strings.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/concat-two-strings.scala')
-rw-r--r--test/files/run/concat-two-strings.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/concat-two-strings.scala b/test/files/run/concat-two-strings.scala
index ad796fe0ee..c8881aa146 100644
--- a/test/files/run/concat-two-strings.scala
+++ b/test/files/run/concat-two-strings.scala
@@ -8,7 +8,7 @@ object Test {
def f4(x: List[Int]) = "" + x
def f5(x: Any) = "" + x
def f6(x: AnyVal) = "" + x
-
+
def main(args: Array[String]): Unit = {
List(f1("a"), f2(5), f3(null), f3(Array('a')), f4(List(1)), f5(null), f6(55d)) mkString ""
}