Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/spreadOperatorInAnnotationArguments.kt.txt
T
2024-02-16 10:19:38 +00:00

18 lines
227 B
Kotlin
Vendored

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