mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-03 00:21:31 +00:00
15 lines
217 B
Java
15 lines
217 B
Java
package test;
|
|
|
|
import java.lang.String;
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Target;
|
|
|
|
@interface MyAnnotation {
|
|
String[] value();
|
|
}
|
|
|
|
@MyAnnotation({"a", "b", "c"})
|
|
class A {
|
|
|
|
}
|