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