Files
2010-06-25 12:46:38 +04:00

8 lines
113 B
Java

package a;
public class Father {
protected void func() {
System.out.println("Father.func");
}
}