Files
Eugene Zhuravlevandintellij-monorepo-bot 7711b1eb6d test data corrected; clarifying comments added
GitOrigin-RevId: db1ee02b81d0df7fb5893d5a2195bf0de235ee28
2023-09-07 22:00:23 +00:00

7 lines
161 B
Plaintext

import java.lang.annotation.*;
import static java.lang.annotation.ElementType.*;
@Target({TYPE, FIELD, METHOD})
public @interface A {
int value() default 3;
}