summaryrefslogtreecommitdiff
path: root/test/files/run/t4894.scala
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2011-09-28 11:26:12 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2011-09-28 11:26:12 +0000
commit9ef01e68851ae6045ce4dd1aa7d5f921a4bc7f0d (patch)
tree633d4cc962a46f33679cd459b1347434772efd79 /test/files/run/t4894.scala
parent888444b17508abc594b35f8a195aac60a28e12fc (diff)
downloadscala-9ef01e68851ae6045ce4dd1aa7d5f921a4bc7f0d.tar.gz
scala-9ef01e68851ae6045ce4dd1aa7d5f921a4bc7f0d.tar.bz2
scala-9ef01e68851ae6045ce4dd1aa7d5f921a4bc7f0d.zip
Fixes #4894.
Adds Growable and Shrinkable to parallel maps and sets. No review.
Diffstat (limited to 'test/files/run/t4894.scala')
-rw-r--r--test/files/run/t4894.scala27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/files/run/t4894.scala b/test/files/run/t4894.scala
new file mode 100644
index 0000000000..2b70da141d
--- /dev/null
+++ b/test/files/run/t4894.scala
@@ -0,0 +1,27 @@
+
+
+
+
+
+object Test {
+
+ def main(args: Array[String]) {
+ import collection._
+ val hs = mutable.HashSet[Int]()
+ hs ++= 1 to 10
+ hs --= 1 to 10
+
+ val phs = parallel.mutable.ParHashSet[Int]()
+ phs ++= 1 to 10
+ for (i <- 1 to 10) assert(phs(i))
+ phs --= 1 to 10
+ assert(phs.isEmpty)
+
+ val phm = parallel.mutable.ParHashMap[Int, Int]()
+ phm ++= ((1 to 10) zip (1 to 10))
+ for (i <- 1 to 10) assert(phm(i) == i)
+ phm --= 1 to 10
+ assert(phm.isEmpty)
+ }
+
+}