mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 02:32:34 +07:00
GitOrigin-RevId: 2594b3ca241b7a4a0ca7e362482f5b606486f254
12 lines
187 B
Plaintext
12 lines
187 B
Plaintext
class Absolutely {
|
|
private Object b = new Object() {
|
|
{
|
|
System.out.println(new int[]{1, 2});
|
|
}
|
|
|
|
public String toString() {
|
|
return "A";
|
|
}
|
|
};
|
|
|
|
} |