Files
kotlin-fork/compiler/testData/javaDescriptorResolver/annotations/customAnnotation.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

13 lines
138 B
Java

package annotations;
@MyAnnotation(MyEnum.ONE)
class MyTest {}
@interface MyAnnotation {
MyEnum value();
}
enum MyEnum {
ONE
}