blob: 2784a2bb8c4a70db7dc9127b3c4415b521b10894 [file] [log] [blame]
package p;
class Test{
void test(){
A a= null;
test(a);
}
void test(A b){
b.foo();
}
}