mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-09 22:36:53 +07:00
10 lines
202 B
Java
10 lines
202 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;
|
|
} |