16 lines
244 B
Kotlin
16 lines
244 B
Kotlin
// FILE: A.java
|
|
public @interface A {
|
|
String[] value() default {"abc", "cde"};
|
|
}
|
|
|
|
// FILE: b.kt
|
|
[A("1", "2", "3")] fun test1() {}
|
|
|
|
[A("4")] fun test2() {}
|
|
|
|
[A(*array("5", "6"), "7")] fun test3() {}
|
|
|
|
[A()] fun test4() {}
|
|
|
|
[A] fun test5() {}
|