Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createConstructorMatchingSuper/afterAmbiguousMethodCall.java
Andrey.Cherkasov de64886d9e [java-highlighting] IDEA-216271 Provide fixes for the "Ambiguous method call" error
GitOrigin-RevId: c2cbd4f561b4d77b43a31d08b3ec8bb58f265f42
2021-03-10 12:24:57 +00:00

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);
}
}