summaryrefslogtreecommitdiff
path: root/test/files/run/bug3984.scala
blob: 3e4d2edf532d74602673737835d7f01b7930c44b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
object Test {
  import scala.collection.immutable.{ Set => ImmutSet }
  import scala.collection.mutable.{ Set => MutSet }

  case class IH (i: Int, h: Int) {
    override def hashCode: Int = h
  }

  def main (args: Array[String]) {
    var is = ImmutSet.empty[IH]
    var ms = MutSet.empty[IH]
    for (ih <- List(IH(2,0),IH(0,0),IH(4,4),IH(6,4),IH(-8,1520786080))) {
      is = is + ih
      ms = ms + ih
    }
    val x = IH(6,4)
    is = is - x
    ms = ms - x
    assert(is == ms)
  }
}