mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
16 lines
241 B
Kotlin
Vendored
16 lines
241 B
Kotlin
Vendored
// 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(*arrayOf("5", "6"), "7") fun test3() {}
|
|
|
|
@A() fun test4() {}
|
|
|
|
@A fun test5() {}
|