Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/spreadOperatorInAnnotationArguments.fir.kt.txt
T
2020-11-26 00:15:13 +03:00

12 lines
171 B
Plaintext
Vendored

annotation class A : Annotation {
constructor(vararg xs: String) /* primary */
val xs: Array<out String>
field = xs
get
}
@A(xs = ["a", "b"])
fun test() {
}