blob: e693ef51f4e78e18b5d38d7139f98e6c712a751b [file] [log] [blame]
package p;
public class A implements I {
/* (non-Javadoc)
* @see p.I#foo()
*/
public int foo() {
return 0;
}
}
class Tester {
void bar() {
I t= null;
int i= t.foo();
t.hashCode();
}
}