summaryrefslogtreecommitdiff
path: root/test/files/run/t4461.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t4461.scala')
-rw-r--r--test/files/run/t4461.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/run/t4461.scala b/test/files/run/t4461.scala
index 99da122f6b..adc9201313 100644
--- a/test/files/run/t4461.scala
+++ b/test/files/run/t4461.scala
@@ -15,5 +15,9 @@ object Test {
buf ++= ArrayBuffer(3, 4) // works
buf ++= List(5) // works
buf ++= collection.immutable.Vector(6, 7) // works
+ buf.insertAll(7, List(8, 9, 10))
+ 0 +=: buf
+ List(-2, -1) ++=: buf
+ buf remove 0
}
}