blob: 61d88ededdcb4ea2cc7a2fb937f27196e5a5b1da [file] [log] [blame]
trait Trait {
abstract void foo()
}
class Implementor implements Trait {
void foo(){}
}
class Implementor2 extends Implementor {
void foo(){}
}