Files
kotlin-fork/compiler/testData/javaDescriptorResolver/annotations/annotationWithEmptyArrayInParam.java
T
Natalia.Ukhorskaya 19221e3ba6 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
2012-08-30 10:56:33 +04:00

15 lines
211 B
Java

package annotations;
import java.lang.String;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
@interface MyAnnotation {
String[] value();
}
@MyAnnotation({})
class A {
}