import java.lang.annotation.Repeatable; @Repeatable(Alerts.class) @interface Alert { String role() default "/dev/null"; } @interface Alerts { Alert[] value(); // gives unused declaration warning }