mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
7 lines
120 B
Java
7 lines
120 B
Java
package p2;
|
|
import p1;
|
|
public class Derived extends p1.Base {
|
|
public synchronized void foo() {
|
|
super.foo();
|
|
}
|
|
} |