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