blob: df703a12b652b0ed15506e322266387f7d8d231b [file] [log] [blame]
public class C {
private int x;
public boolean equals(Object object) {
if (object instanceof C) {
if (((C)object).x == x) {
return true;
}
}
return false;
}
}