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