summaryrefslogtreecommitdiff
path: root/test/pending/run/bug4704run.scala
blob: af488a56c79b6521d4005b422320175ccce93fd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
trait MM {
  protected def method = "bip"
}
trait NN {
  protected def method = "bop"
}
trait OOOOO extends MM with NN {
  override protected def method = super[MM].method + super[NN].method
  override def hashCode = super[MM].hashCode + super[NN].hashCode
}