summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorJames Iry <jamesiry@gmail.com>2013-02-01 09:00:50 -0800
committerJames Iry <jamesiry@gmail.com>2013-02-01 09:00:50 -0800
commit06295f9682b3292b9fca367a559c000fcf0c782d (patch)
tree37fb1097854a5f8cd283b7687d12bd99b6d17009 /test/files/run
parent309ff57ba62b6a6ec1a9c1b28b8bbabfd1b47b72 (diff)
parente36327ac2af54e70a391b4dbf036a5e627d65fee (diff)
downloadscala-06295f9682b3292b9fca367a559c000fcf0c782d.tar.gz
scala-06295f9682b3292b9fca367a559c000fcf0c782d.tar.bz2
scala-06295f9682b3292b9fca367a559c000fcf0c782d.zip
Merge pull request #1960 from ViniciusMiana/2.10.x
SI-6853 changed private method remove to be tail recursive.
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/t6853.scala18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/files/run/t6853.scala b/test/files/run/t6853.scala
new file mode 100644
index 0000000000..352375c99c
--- /dev/null
+++ b/test/files/run/t6853.scala
@@ -0,0 +1,18 @@
+// Test cases: the only place we can cut and paste without crying
+// ourself to sleep.
+object Test {
+
+ def main(args: Array[String]): Unit = {
+ // First testing the basic operations
+ val m = collection.mutable.ListMap[String, Int]()
+ var i = 0
+ while(i < 2) { m += ("foo" + i) -> i; i = i+1}
+ assert(m == Map("foo1"->1,"foo0"->0))
+ m-= "foo0"
+ assert(m == Map("foo1"->1))
+ // Now checking if it scales as described in SI-6853
+ i = 0
+ while(i < 80000) { m += ("foo" + i) -> i; i = i+1}
+ assert(m.size == 80000)
+ }
+}