summaryrefslogtreecommitdiff
path: root/test/files/run/t2446.scala
diff options
context:
space:
mode:
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)
+ }
+}