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