blob: 5d927394055a9e5189f8ed346157a0029fc341e5 [file] [log] [blame]
package copyinheritancetests;
public team class SubTeam extends SuperTeam {
void test() {
R r = new R();
r.roleMethod1();
System.out.println("finished");
}
public static void main(String [] args) {
new SubTeam().test();
}
}