blob: 733687bbdd21da031fb350227ba373242812bd9f [file] [log] [blame]
package p;
interface B {
public abstract int foo();
}
public class A implements B {
public int foo() {
return 0;
}
}
class Tester {
void bar() {
B t= null;
int i= t.foo();
t.hashCode();
}
}