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

6 lines
134 B
Kotlin
Vendored

// FIR_IDENTICAL
annotation class A(vararg val xs: String)
@A("abc", "def") fun test1() {}
@A("abc") fun test2() {}
@A fun test3() {}