summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-01-06 14:37:21 -0800
committerPaul Phillips <paulp@improving.org>2013-01-06 14:37:21 -0800
commit2d0fb869fc7b813f562417372120bb25cb636642 (patch)
treeb89dc6023957b61c0566ede654c9ee305fc5e650 /test/files
parent38ff53cc80de5792247d2aac5fb6e4fc2f59600d (diff)
parentaffa98fa54893830b88a9ebebd5d29740f10114c (diff)
downloadscala-2d0fb869fc7b813f562417372120bb25cb636642.tar.gz
scala-2d0fb869fc7b813f562417372120bb25cb636642.tar.bz2
scala-2d0fb869fc7b813f562417372120bb25cb636642.zip
Merge pull request #1847 from JamesIry/SI-6916_master
SI-6916 makes FlatHashTable#remove a Boolean not Option[A]
Diffstat (limited to 'test/files')
-rw-r--r--test/files/run/hashsetremove.check6
-rw-r--r--test/files/run/hashsetremove.scala13
2 files changed, 19 insertions, 0 deletions
diff --git a/test/files/run/hashsetremove.check b/test/files/run/hashsetremove.check
new file mode 100644
index 0000000000..8de9826895
--- /dev/null
+++ b/test/files/run/hashsetremove.check
@@ -0,0 +1,6 @@
+remove 0 should be false, was false
+contains 1 should be true, was true
+remove 1 should be true, was true
+contains 1 should be false, was false
+remove 1 should be false, was false
+contains 1 should be false, was false
diff --git a/test/files/run/hashsetremove.scala b/test/files/run/hashsetremove.scala
new file mode 100644
index 0000000000..7b82a9909b
--- /dev/null
+++ b/test/files/run/hashsetremove.scala
@@ -0,0 +1,13 @@
+import scala.collection.mutable.HashSet
+
+
+object Test extends App {
+ val h = new HashSet[Int]
+ h += 1
+ println(s"remove 0 should be false, was ${h remove 0}")
+ println(s"contains 1 should be true, was ${h contains 1}")
+ println(s"remove 1 should be true, was ${h remove 1}")
+ println(s"contains 1 should be false, was ${h contains 1}")
+ println(s"remove 1 should be false, was ${h remove 1}")
+ println(s"contains 1 should be false, was ${h contains 1}")
+ } \ No newline at end of file