blob: 0cb046b371da4f145c964f9baf2d7fb71168b7db [file] [log] [blame]
package p3;
import p1.A;
import p2.B;
class C {
C() {
getB().mA1(getA());
}
A getA() {
return null;
}
B getB() {
return null;
}
}