mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-05 12:50:18 +07:00
10 lines
141 B
Java
10 lines
141 B
Java
package b;
|
|
|
|
import a.Father;
|
|
|
|
public class Son extends Father {
|
|
protected void func() {
|
|
System.out.println("Son.func");
|
|
}
|
|
}
|