blob: b1d28cee7aa04ac789b905caf00cbf546e6fcb20 [file] [log] [blame]
class Foo {
void xxx(){}
void bar() {
xxx();
}
}
class FooImpl extends Foo {
void xxx() {
super.xxx();
}
}