From d66a76c1214cb0162931c32b9300f4c1a38b1099 Mon Sep 17 00:00:00 2001 From: Hubert Plociniczak Date: Wed, 6 Jan 2010 12:33:28 +0000 Subject: Fixes #2857. No review. --- test/files/run/t2857.check | 1 + test/files/run/t2857.scala | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 test/files/run/t2857.check create mode 100644 test/files/run/t2857.scala (limited to 'test') diff --git a/test/files/run/t2857.check b/test/files/run/t2857.check new file mode 100644 index 0000000000..c508d5366f --- /dev/null +++ b/test/files/run/t2857.check @@ -0,0 +1 @@ +false diff --git a/test/files/run/t2857.scala b/test/files/run/t2857.scala new file mode 100644 index 0000000000..bd0d6fde16 --- /dev/null +++ b/test/files/run/t2857.scala @@ -0,0 +1,9 @@ +object Test extends Application { + import collection.mutable._ + val m = new HashMap[Int, Set[String]] with MultiMap[Int, String] + m.addBinding(6, "Foo") + m.removeBinding(6, "Foo") + println(m.contains(6)) +} + + -- cgit v1.2.3