19221e3ba6
Temporary change testData for LoadJavaTest because enums in parameters of annotations in kotlin files is now unsupported
10 lines
206 B
Java
10 lines
206 B
Java
package annotations;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target({ElementType.FIELD, ElementType.CONSTRUCTOR})
|
|
@interface targetAnnotation {
|
|
String value();
|
|
}
|