summaryrefslogtreecommitdiff
path: root/test/files/run/array-existential-bound.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/array-existential-bound.scala')
-rw-r--r--test/files/run/array-existential-bound.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/array-existential-bound.scala b/test/files/run/array-existential-bound.scala
index bc442d39f7..b397c98111 100644
--- a/test/files/run/array-existential-bound.scala
+++ b/test/files/run/array-existential-bound.scala
@@ -10,8 +10,8 @@ object Test extends Fooz[Array[Int]] {
def main(args: Array[String]): Unit = {
println(f1.f0(Array[String]("a", "b")))
- println(f2.f0(1 to 1000 toArray))
+ println(f2.f0((1 to 1000).toArray))
println(f3.f0((1 to 1000).toArray[Any]))
- println(f4.f0('a' to 'z' toArray))
+ println(f4.f0(('a' to 'z').toArray))
}
}