19221e3ba6
Temporary change testData for LoadJavaTest because enums in parameters of annotations in kotlin files is now unsupported
15 lines
211 B
Java
15 lines
211 B
Java
package annotations;
|
|
|
|
import java.lang.String;
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Target;
|
|
|
|
@interface MyAnnotation {
|
|
String[] value();
|
|
}
|
|
|
|
@MyAnnotation({})
|
|
class A {
|
|
|
|
}
|