blob: 2f1240202e158ba4403de1ed2ec98ae21543dbf1 [file] [log] [blame]
package p;
public class A {
public int foo() {
return 0;
}
}
class Tester {
void bar() {
A t= null;
int i= t.foo();
t.hashCode();
}
}