mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
15 lines
205 B
Java
15 lines
205 B
Java
// "Create constructor matching super" "true"
|
|
class X {
|
|
X(int... a) {}
|
|
X(String... b) {}
|
|
}
|
|
|
|
class Y extends X {
|
|
Y(int... a) {
|
|
super(a);
|
|
}
|
|
|
|
Y(String... b) {
|
|
super(b);
|
|
}
|
|
} |