mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-13 15:52:01 +07:00
Java: better error message when there are more arguments than parameters (IDEA-336129)
GitOrigin-RevId: a17a5f0f3878b9baf211737a614d1aa1a5103d31
This commit is contained in:
committed by
intellij-monorepo-bot
parent
ed3ae46a60
commit
6916b6b005
@@ -11,7 +11,7 @@ public class ClassWithJavaConstructor {
|
||||
|
||||
public static class B extends A {
|
||||
public B() {
|
||||
super<error descr="'A(int, java.lang.String)' in 'ClassWithJavaConstructor.A' cannot be applied to '()'">()</error>;
|
||||
super<error descr="Expected 2 arguments but found 0">()</error>;
|
||||
}
|
||||
|
||||
public B(int i) {
|
||||
|
||||
Reference in New Issue
Block a user