blob: 1c4d0959f3a6b514e550da1a943ce2c63f18a386 [file] [log] [blame]
package p;
public class Foo extends Bar {
void foo() {
}
void myFoo() throws Exception {
foo(); // <-- invoke here
new Bar().foo();
}
}