19221e3ba6
Temporary change testData for LoadJavaTest because enums in parameters of annotations in kotlin files is now unsupported
11 lines
107 B
Java
11 lines
107 B
Java
package annotations;
|
|
|
|
@interface A {
|
|
B value();
|
|
}
|
|
|
|
@A(@B("test"))
|
|
@interface B {
|
|
String value();
|
|
}
|