import java.lang.annotation.ElementType; import java.lang.annotation.Target; @Target({ElementType.LOCAL_VARIABLE}) @interface Anno {} class Test { void test() { @Anno String s; s = ""; s = "external assign"; } }