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

17 lines
269 B
Java
Vendored

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 {
}
}