blob: 8d10b7e50f986d7b5d290dc57ed591403dbf56e4 [file] [log] [blame]
import java.lang.annotation.*;
import static java.lang.annotation.ElementType.*;
@Target({TYPE, FIELD, METHOD})
public @interface A {
int value() default 3;
}