Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/compactToCanonical/afterSimple.java
Tagir Valeev b936699772 IDEA-229842 Convert compact constructor to canonical
GitOrigin-RevId: 6edd200e51ec300bf1068d2f040b837fea3f6e1f
2020-01-21 11:08:24 +00:00

11 lines
190 B
Java

// "Convert compact constructor to canonical" "true"
record R(int x,int y) {
/*
hello
*/
public R(int x, int y) {<caret>
this.x = x;
this.y = y;
}
}