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

12 lines
178 B
Java

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