Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/spreadOperatorInAnnotationArguments.kt.txt
T
2021-09-23 06:59:33 +00:00

17 lines
226 B
Plaintext
Vendored

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