JavaDescriptorResolver: Add resolve for annotation parameters (array, annotation, enum)
Temporary change testData for LoadJavaTest because enums in parameters of annotations in kotlin files is now unsupported
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package annotations;
|
||||
|
||||
@MyAnnotation(MyEnum.ONE)
|
||||
class MyTest {}
|
||||
|
||||
@interface MyAnnotation {
|
||||
MyEnum value();
|
||||
}
|
||||
|
||||
enum MyEnum {
|
||||
ONE
|
||||
}
|
||||
Reference in New Issue
Block a user