Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/spreadOperatorInAnnotationArguments.kt
T

5 lines
90 B
Kotlin
Vendored

annotation class A(vararg val xs: String)
@A(*arrayOf("a"), *arrayOf("b"))
fun test() {}