blob: 2ea0612bcf9e6c962e0de5cf5164dc6f8c7fd660 [file] [log] [blame]
package p2;
import p1;
public class Derived extends p1.Base {
public synchronized void foo() {
super.foo();
}
}