Files
openide/java/java-tests/testData/codeInsight/generateConstructor/afterFinalFieldPreselection.java
Bas Leijdekkers 9a18244121 Document, rename, fix and test PsiUtil.getMaximumModifier()
(related to the old issues IDEA-95697, IDEA-102872 & IDEA-111785)

GitOrigin-RevId: b9750fa39fa60c8562eba7561a7015cfd9548fa2
2022-05-04 21:22:45 +00:00

11 lines
174 B
Java

class Test {
private int a;
private final int b;
private int c;
private final int d;
Test(int b, int d) {
this.b = b;
this.d = d;
}
}