// "Make annotation applicable to fields" "true-preview" import java.lang.annotation.ElementType; import java.lang.annotation.Target; @Target({,}) @interface Foo {} class Main { @Foo int x = 42; }