summaryrefslogtreecommitdiff
path: root/test/files/run/t2446.scala
diff options
context:
space:
mode:
authorPhilipp Haller <hallerp@gmail.com>2009-10-21 10:08:34 +0000
committerPhilipp Haller <hallerp@gmail.com>2009-10-21 10:08:34 +0000
commit58651079b710013873372f12a451146b640581c7 (patch)
tree484fce2ce3b4e205139f08f700221138c9552c96 /test/files/run/t2446.scala
parenta021e16b5f5257d03596ad074da3d22e1865aa80 (diff)
downloadscala-58651079b710013873372f12a451146b640581c7.tar.gz
scala-58651079b710013873372f12a451146b640581c7.tar.bz2
scala-58651079b710013873372f12a451146b640581c7.zip
Fix and test for #2446.
Diffstat (limited to 'test/files/run/t2446.scala')
-rw-r--r--test/files/run/t2446.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/run/t2446.scala b/test/files/run/t2446.scala
new file mode 100644
index 0000000000..29494ab3e7
--- /dev/null
+++ b/test/files/run/t2446.scala
@@ -0,0 +1,9 @@
+object Test {
+ def main(args : Array[String]) : Unit = {
+ val arr = new Array[Int](10000)
+ arr(5000) = 1
+ arr (9000) = 2
+ val sum = arr.reduceRight(_ + _)
+ println(sum)
+ }
+}