aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t2857.scala
blob: 5df2d440eac5754247443c01808fd1aad7b5b939 (plain) (blame)
1
2
3
4
5
6
7
8
9
object Test extends dotty.runtime.LegacyApp {
  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))
}