Java to Kotlin: correct conversion of array components in annotation attributes

This commit is contained in:
Valentin Kipyatkov
2014-06-16 19:10:58 +04:00
parent 65b3ec6dfd
commit bd30ae572e
4 changed files with 41 additions and 23 deletions
+8
View File
@@ -32,6 +32,14 @@ public @interface Anon6 {
int intValue() default 10;
}
public @interface Anon7 {
Class[] value();
}
public @interface Anon8 {
Class[] classes();
}
public enum E {
A, B, C
}