Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/AnnotationWithArrayOfEnumInParam.java
2013-03-12 20:40:19 +04:00

10 lines
199 B
Java

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