mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
12 lines
137 B
Kotlin
Vendored
12 lines
137 B
Kotlin
Vendored
// !WITH_NEW_INFERENCE
|
|
|
|
// FILE: A.java
|
|
public @interface A {
|
|
String[] value();
|
|
}
|
|
|
|
// FILE: b.kt
|
|
@A(*arrayOf(1, "b"))
|
|
fun test() {
|
|
}
|