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

17 lines
253 B
Java
Vendored

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