blob: cc6143dcf2f1c49653c02a15f1c2fb8aa35c7744 [file] [log] [blame]
public class Test {
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
return true;
}
public int hashCode() {
return 0;
}
}