blob: 8ad712814e9b9d883829181dafd96ea49d908f67 [file] [log] [blame]
package b;
import a.Father;
public class Son extends Father {
protected void func() {
System.out.println("Son.func");
}
}