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