mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 05:18:02 +07:00
GitOrigin-RevId: 2594b3ca241b7a4a0ca7e362482f5b606486f254
17 lines
304 B
Java
17 lines
304 B
Java
class Absolutely {
|
|
private Inner b = new Inner(new int[]{1, 2});
|
|
|
|
private class Inner<caret> { // inline here
|
|
public Inner(String s, int... i) {
|
|
System.out.println(i);
|
|
}
|
|
|
|
public Inner(int... i) {
|
|
this("", i);
|
|
}
|
|
|
|
public String toString() {
|
|
return "A";
|
|
}
|
|
}
|
|
} |