mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
inaccessible error on nested annotations for class (IDEA-181792)
This commit is contained in:
+10
@@ -1,4 +1,14 @@
|
||||
@SuppressWarnings(ThisClass.<error descr="'FOO' has private access in 'ThisClass'">FOO</error>)
|
||||
@A(@B(ThisClass.<error descr="'FOO' has private access in 'ThisClass'">FOO</error>))
|
||||
public class ThisClass {
|
||||
private static final String FOO = "foo";
|
||||
}
|
||||
|
||||
|
||||
@interface A {
|
||||
B value();
|
||||
}
|
||||
|
||||
@interface B {
|
||||
String value();
|
||||
}
|
||||
Reference in New Issue
Block a user