mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
17 lines
253 B
Java
Vendored
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 {
|
|
|
|
}
|
|
}
|