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:
+14
@@ -0,0 +1,14 @@
|
||||
package annotations;
|
||||
|
||||
import java.lang.String;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@interface MyAnnotation {
|
||||
String[] value();
|
||||
}
|
||||
|
||||
@MyAnnotation({})
|
||||
class A {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user