Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/AnnotationWithArrayOfEnumInParam.java

13 lines
277 B
Java

package test;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
public interface AnnotationWithArrayOfEnumInParam {
@Target({ElementType.FIELD, ElementType.CONSTRUCTOR})
public @interface targetAnnotation {
String value();
}
}