IDEADEV-25972
[fedora-idea.git] / testData / refactoring / inlineToAnonymousClass / QualifyParentStaticReferences.java.after
blob775aa72e3523dea861a01a6b2e0057209f53adc8
1 class ParentCtor {
2     public static final String PARENT_CONST = "";
4     public ParentCtor(String s) {
5     }
8 class Usage {
9     public void test() {
10         new ParentCtor(ParentCtor.PARENT_CONST) {
11         };
12     }