blob: 0b27acd76a99c41cedd6e6ffca1ad6e648632bc9 [file] [log] [blame]
class B {
public final A myDelegate = new A();
public void methodFromA() {
myDelegate.methodFromA();
}
public int intMethodFromA(int i) {
return myDelegate.intMethodFromA(i);
}
}