summaryrefslogtreecommitdiff
path: root/test/files/run/arrays.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/arrays.scala')
-rw-r--r--test/files/run/arrays.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/run/arrays.scala b/test/files/run/arrays.scala
index 8a2d96a2a7..e8a984dc1b 100644
--- a/test/files/run/arrays.scala
+++ b/test/files/run/arrays.scala
@@ -158,6 +158,12 @@ object Test {
c(xs)
}
+ def checkT2368() {
+ val arr = Array(1, 2, 3)
+ arr(0) += 1
+ assert(arr(0) == 1)
+ }
+
//##########################################################################
// Values
@@ -919,6 +925,7 @@ object Test {
checkZip
checkConcat
+ checkT2368()
//######################################################################
@@ -929,3 +936,4 @@ object Test {
//##########################################################################
}
+