summaryrefslogtreecommitdiff
path: root/test/files/pos/bug202.scala
blob: 087e1ff5d2cff35c20fa91b50d74fb5d64b3b11b (plain) (blame)
1
2
3
4
5
6
7
8
trait C {
  type T;
  def f(x: T): unit;
}

trait D extends C {
  def f(x: T): unit = super.f(x);
}