blob: 03df495d3334567ab3bb31763a49104139476673 [file] [log] [blame]
trait Trait {
abstract void foo()
}
trait T2 extends Trait {
void foo() {}
}
class Implementor2 implements T2 {
void foo(){}
}