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