Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/makePublic/beforeInnerInAnnotation.java

12 lines
183 B
Java

// "Make 'Inner' protected" "true"
@MyAnnotation(Outer.I<caret>nner.class)
public class Outer {
private static class Inner {
}
}
@interface MyAnnotation {
Class<?> value();
}