mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-01 08:31:29 +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 {
|
|
|
|
}
|