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