aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/i939.scala
blob: 720bf764c9105a0b041e6198638982f0c38bfb34 (plain) (tree)
1
2
3
4
5
6
7
8







                                                  
object IntMap {
  private case object Nil {
    override def equals(that : Any) = that match {
      case _: this.type => true
      case _            => super.equals(that)
    }
  }
}