summaryrefslogtreecommitdiff
path: root/test/files/specialized/arrays-traits.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/specialized/arrays-traits.scala')
-rw-r--r--test/files/specialized/arrays-traits.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/specialized/arrays-traits.scala b/test/files/specialized/arrays-traits.scala
index ee62622635..de54d22d18 100644
--- a/test/files/specialized/arrays-traits.scala
+++ b/test/files/specialized/arrays-traits.scala
@@ -28,19 +28,19 @@ class BaseG[T](val arr: Array[T]) extends SuperG[T] {
object Test {
-
+
def main(args: Array[String]) {
(new BaseS(new Array[String](1)): SuperS[String]).foo
println(arrayApplyCount)
(new BaseS(new Array[String](1)): SuperS[String]).bar(new Array[String](1))
println(arrayApplyCount)
println(arrayUpdateCount)
-
+
(new BaseG(new Array[String](1)): SuperG[String]).foo
println(arrayApplyCount)
(new BaseG(new Array[String](1)): SuperG[String]).bar(new Array[String](1))
println(arrayApplyCount)
println(arrayUpdateCount)
}
-
+
}