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