blob: 563ccaf30d84bbc2dcc5b15dbe3c462b40440269 [file] [log] [blame]
public class A extends ASuper {
private final MyIntf myDelegate = new MyIntf();
public Intf getMyDelegate() {
return myDelegate;
}
private class MyIntf implements Intf {
public void method1 () {
System.out.println("1");
}
public void method2() {
A.this.method2();
}
}
}