summaryrefslogtreecommitdiff
path: root/test/files/pos/bug30.scala
blob: 6d28e18c0df7bd3270b66ac1ee99d45021ba9413 (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 = ();
}