summaryrefslogblamecommitdiff
path: root/test/files/run/t2857.scala
blob: bd0d6fde166ec87b064b1bada2eabd1052a71abb (plain) (tree)
1
2
3
4
5
6
7
8
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))
}