blob: 949419221d40bea7577aba219ac87f62799bd63c [file] [log] [blame]
import java.lang.annotation.*;
@Target(value = ElementType.TYPE_USE)
public @interface TA { }
class Test {
void m() {
@TA String <caret>v = "smth";
System.out.println(v);
}
void use() {
m();
}
}