blob: 83463f9200d0447eb5867008dc4d10d5a0d40e7e [file] [log] [blame]
class Super {
void f<caret>oo() {}
}
class Child extends Super {
{
foo();
}
@Override
void foo() {
super.foo();
}
}