aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0030.scala
blob: 2f23be14d98a9e7fcc80d1ddb4a0f5213a2bb095 (plain) (blame)
1
2
3
4
5
6
7
8
9
trait A {
  def f(x: Int): Unit;
  def f(x: String): Unit;
}

class B extends A {
  def f(x: Int): Unit = ();
  def f(x: String): Unit = ();
}