Fixed KT-5247 Java to Kotlin: convert java @interfaces into Kotlin annotation classes
#KT-5247 Fixed
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
@interface Anon {
|
||||
String s() default "a";
|
||||
String[] stringArray() default { "a", "b" };
|
||||
int[] intArray();
|
||||
}
|
||||
|
||||
@Anon(intArray = {1, 2})
|
||||
class A{ }
|
||||
Reference in New Issue
Block a user