mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
10 lines
190 B
Java
10 lines
190 B
Java
abstract class SuperTest {
|
|
public boolean equals(Object object) {
|
|
return true;
|
|
}
|
|
public int hashCode() {
|
|
return 0;
|
|
}
|
|
}
|
|
class Test extends SuperTest {<caret>
|
|
} |