blob: 58177cda54d8361c3389636c27336b1f528afcb4 [file] [log] [blame]
package p1.p2;
@Retention(RUNTIME)
@Target( { ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD })
@BindingAnnotation
public @interface SomeAnnotation {
int value() default -1;
String name() default "";
}