summaryrefslogtreecommitdiff
path: root/test/files/run/array-existential-bound.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-05-26 05:35:36 -0700
committerPaul Phillips <paulp@improving.org>2013-05-26 05:35:36 -0700
commit970c245a3e96cb52167428bef80d7e772876bd12 (patch)
tree88dcc988c63ee88c27a8c392939500697d629826 /test/files/run/array-existential-bound.scala
parent3df072e668b4a3011e990dd2e63a99ebd5189af5 (diff)
parente037c9a3c12e21104a5aaf15d2bf27779cc3fd12 (diff)
downloadscala-970c245a3e96cb52167428bef80d7e772876bd12.tar.gz
scala-970c245a3e96cb52167428bef80d7e772876bd12.tar.bz2
scala-970c245a3e96cb52167428bef80d7e772876bd12.zip
Merge pull request #2591 from som-snytt/topic/partest-inches
SI-7003 Partest redirects stderr to log file
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))
}
}