mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
14 lines
318 B
Java
14 lines
318 B
Java
@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();
|
|
} |