mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-13 11:36:53 +07:00
10 lines
194 B
Java
10 lines
194 B
Java
// "Add the 'FIELD' target" "true"
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target({ElementType.FIELD})
|
|
@interface Foo {}
|
|
|
|
class Main {
|
|
@Foo int x = 42;
|
|
} |