mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitOrigin-RevId: fd3331c90f28706c98d60134126defb1355e595b
19 lines
418 B
Java
19 lines
418 B
Java
class A {
|
|
|
|
void m() {
|
|
new Object() {
|
|
@Override
|
|
public int hashCode() {
|
|
return super.hashCode();
|
|
}
|
|
};
|
|
<selection><caret>System.out.println();
|
|
System.out.println();</selection>
|
|
new Object() {
|
|
@Override
|
|
public int hashCode() {
|
|
return super.hashCode();
|
|
}
|
|
};
|
|
}
|
|
} |