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