mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
13 lines
189 B
Java
13 lines
189 B
Java
// "Add private no-args constructor to X" "true-preview"
|
|
class Z {
|
|
private class X {
|
|
X(int... a) {}
|
|
X(String... b) {}
|
|
|
|
private X() {
|
|
}
|
|
}
|
|
|
|
class Y extends X {
|
|
}
|
|
} |