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