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

17 lines
267 B
Java

package test;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
public interface AnnotationWithEmptyArrayInParam {
public @interface MyAnnotation {
String[] value();
}
@MyAnnotation({})
public class A {
}
}