mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-17 08:31:28 +00:00
17 lines
269 B
Java
Vendored
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 {
|
|
|
|
}
|
|
}
|