provide accessibility fixes for problems inside annotations (IDEA-148864)

This commit is contained in:
Anna Kozlova
2016-09-15 13:55:49 +03:00
parent ca0109df46
commit e2e3d94711
5 changed files with 52 additions and 3 deletions
@@ -0,0 +1,12 @@
// "Make 'Inner' protected" "true"
@MyAnnotation(Outer.Inner.class)
public class Outer {
protected static class Inner {
}
}
@interface MyAnnotation {
Class<?> value();
}
@@ -0,0 +1,12 @@
// "Make 'Inner' protected" "true"
@MyAnnotation(Outer.I<caret>nner.class)
public class Outer {
private static class Inner {
}
}
@interface MyAnnotation {
Class<?> value();
}