legacy-svn-scala/test/files/neg/bug200.scala

9 lines
86 B
Scala

trait X {
def foo: Int;
}
trait Y extends X {
def foo: String;
def foo: Int;
}