summaryrefslogtreecommitdiff
path: root/test/files/pos/arrays2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/arrays2.scala')
-rw-r--r--test/files/pos/arrays2.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/arrays2.scala b/test/files/pos/arrays2.scala
index 795c486e37..2d5409cbb8 100644
--- a/test/files/pos/arrays2.scala
+++ b/test/files/pos/arrays2.scala
@@ -11,8 +11,8 @@ object arrays2 {
// #2422
object arrays4 {
- val args = Array[String]("World")
- "Hello %1$s".format(args: _*)
+ val args = Array[String]("World")
+ "Hello %1$s".format(args: _*)
}
// #2461