blob: 75920b24bebf2de93521873df2fc09c1e7df0b39 [file] [log] [blame]
class MyClass {
public void foo() {
MyDD<String> d = new MyDD<String>() {
@Override
public int hashCode() {
<selection>return super.hashCode();</selection>
}
@Override
public boolean equals(Object obj) {
return super.equals(obj);
}
@Override
protected Object clone() throws CloneNotSupportedException {
return super.clone();
}
@Override
public String toString() {
return super.toString();
}
@Override
protected void finalize() throws Throwable {
super.finalize();
}
};
}
}
abstract class MyDD<T> {
}