blob: af5a97eb992f55daad95851ff35ae9ad4fcffc25 [file] [log] [blame]
package p;
class Test{
void test(){
A a= new A();
test(a);
}
void test(A a){
a.fooB();
}
}