Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/ArrayOfEnumInParam.java
2013-09-06 23:26:26 +04:00

13 lines
263 B
Java
Vendored

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