mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
10 lines
198 B
Kotlin
Vendored
10 lines
198 B
Kotlin
Vendored
// FILE: A.java
|
|
public @interface A {
|
|
String[] value();
|
|
}
|
|
|
|
// FILE: b.kt
|
|
@A(*<!TYPE_INFERENCE_EXPECTED_TYPE_MISMATCH(kotlin.Array<out kotlin.String>; IGNORE)!>arrayOf(1, "b")<!>)
|
|
fun test() {
|
|
}
|