Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createConstructorFromCall/afterThis.java
Bas Leijdekkers 9acf04f411 Java: get useful "Create constructor" quick-fix on this() call with incorrect arguments (IDEA-381152)
GitOrigin-RevId: a226e4c6d00310a1fed86fe4e26dc872b64efaca
2025-10-25 11:06:32 +00:00

10 lines
168 B
Java

// "Create constructor in 'Inconceivable'" "true-preview"
class Inconceivable {
Inconceivable() {
this(1);
}
public Inconceivable(int i) {
}
}