blob: fb12d11c5620df9722e363fb71fbdaa3dfd933b8 [file] [log] [blame]
class Foo {
void foo(){}
void bar() {
foo();
}
}
class FooImpl extends Foo {
void f<caret>oo() {
super.foo();
}
}