blob: 3a24c9d5d6815ed89278833fd45f90fc6f9aeb47 [file] [log] [blame]
class Foo {
protected void foo(){}
}
class FooImpl extends Foo {
void bar() {
foo();
}
}