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