blob: 668a1ad1d10e851ce20e513459246428f541331a [file] [log] [blame]
package p;
class Test{
void test(){
A a= new A();
test(a);
}
void test(B b){
int y= b.f;
}
}