mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-18 07:15:51 +07:00
21 lines
283 B
Java
21 lines
283 B
Java
class Outer {
|
|
final static String C0 = "";
|
|
|
|
static class Inner {
|
|
final static String C1 = "";
|
|
}
|
|
|
|
@A(Nested.C0)
|
|
enum Enm {
|
|
@A(Nested.C0)
|
|
E0;
|
|
|
|
@A(Nested.C1)
|
|
void foo() {
|
|
}
|
|
}
|
|
}
|
|
|
|
@interface A {
|
|
String value();
|
|
} |