blob: b961f2152ef8bd06e2e7fd1c71dfce5405d88b17 [file] [log] [blame]
class A {
Object getObject() {
return null;
}
void method() {
final Object temp = getObject();
Object o = temp;
return temp.hashCode();
}
}