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