blob: 81d389ab74a4bbec78c6ea387c24c4b73e0969a6 [file] [log] [blame]
class A {
void <caret>foo() {
}
}
class B extends A {
void boo() {
super.foo();
}
}