blob: 57aa14f1ab4f5bb692bd618256323d94b22f4406 [file] [log] [blame]
package p;
class Test{
void test(){
B a= new A();
test(a);
}
void test(B b){
b.f= 0;
}
}