blob: 886236f8b86eba5409b818c0a1d638a3ba01c9d1 [file] [log] [blame]
package test;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
public interface ArrayOfStringInParam {
public @interface MyAnnotation {
String[] value();
}
@MyAnnotation({"a", "b", "c"})
public class A {
}
}