summaryrefslogtreecommitdiff
path: root/test/files/pos/t2569/Child.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t2569/Child.scala')
-rw-r--r--test/files/pos/t2569/Child.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/pos/t2569/Child.scala b/test/files/pos/t2569/Child.scala
index 3d7f4248b5..64f4dc172f 100644
--- a/test/files/pos/t2569/Child.scala
+++ b/test/files/pos/t2569/Child.scala
@@ -1,9 +1,9 @@
package varargs
-
+
class Child extends Parent {
-
+
override def concatenate(strings: String*): String =
strings map("\"" + _ + "\"") mkString("(", ", ", ")")
-
+
}