blob: 10bdd5df482226cac78cf8ca8b0a933e6673203c [file] [log] [blame]
// "Convert to atomic" "true"
import java.lang.annotation.*;
@Target(value = ElementType.TYPE_USE)
public @interface TA { int value(); }
class T {
@TA(42) String <caret>v;
}