blob: a141d5bf804904bcde938f1aa01ef056a3075f24 [file] [log] [blame]
package copyinheritancetests;
public team class SuperTeam {
protected class R {
protected void roleMethod1() {
System.out.println("roleMethod1");
}
}
}