summaryrefslogtreecommitdiff
path: root/test/files/run/t5867.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5867.scala')
-rw-r--r--test/files/run/t5867.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/t5867.scala b/test/files/run/t5867.scala
index 6a86ac3e6d..f7e9393b7a 100644
--- a/test/files/run/t5867.scala
+++ b/test/files/run/t5867.scala
@@ -3,12 +3,12 @@ import collection.mutable.UnrolledBuffer
object Test {
-
+
def main(args: Array[String]) {
val buf = UnrolledBuffer(1 to 50: _*)
val dub = buf ++ buf
-
+
println(dub)
}
-
+
}