Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createConstructorFromCall/afterThis.java
T

10 lines
168 B
Java

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