8 lines
105 B
Kotlin
Vendored
8 lines
105 B
Kotlin
Vendored
// !WITH_NEW_INFERENCE
|
|
|
|
annotation class B(vararg val args: String)
|
|
|
|
@B(*arrayOf(1, "b"))
|
|
fun test() {
|
|
}
|