mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-19 01:09:52 +07:00
11 lines
133 B
Java
11 lines
133 B
Java
@interface SomeAnnotation {
|
|
String value();
|
|
}
|
|
|
|
@SomeAnnotation(A.CONST)
|
|
interface A {
|
|
String CONST = "42";
|
|
}
|
|
|
|
interface B {
|
|
} |