19221e3ba6
Temporary change testData for LoadJavaTest because enums in parameters of annotations in kotlin files is now unsupported
11 lines
144 B
Java
11 lines
144 B
Java
package annotations;
|
|
|
|
import annotations.MyEnum;
|
|
|
|
@interface MyAnnotation {
|
|
MyEnum value();
|
|
}
|
|
|
|
@MyAnnotation(MyEnum.ONE)
|
|
class testClass {}
|