Files
openide/java/java-tests/testData/codeInsight/generateConstructor/afterPrivateClass.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

7 lines
78 B
Java

class Test {
private class Foo {
private Foo() {<caret>
}
}
}