blob: 68dfcdbf2cc229ae1a634b0bc898b53d18225599 [file] [log] [blame]
package p3;
import p1.A;
import p2.B;
class C {
{
this.getA().m1A(getB());
}
A getA() {
return null;
}
B getB() {
return null;
}
}