blob: fd7140de23270962bc3910de75625105648fbaf7 [file] [log] [blame]
package p;
class Test{
void test(){
Object a= new A();
test(a);
}
void test(Object o){
o.hashCode();
}
}