mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
8 lines
185 B
Java
8 lines
185 B
Java
@FooAnnotation(Foo.<error descr="'BAR' has private access in 'Foo'">BAR</error>)
|
|
class Foo {
|
|
private static final String BAR = "bar";
|
|
}
|
|
|
|
@interface FooAnnotation {
|
|
String value();
|
|
} |