Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/annotationsWithVarargParameters.kt.txt
T
2020-11-26 00:14:03 +03:00

24 lines
215 B
Plaintext
Vendored

annotation class A : Annotation {
constructor(vararg xs: String) /* primary */
val xs: Array<out String>
field = xs
get
}
@A(...)
fun test1() {
}
@A(...)
fun test2() {
}
@A(...)
fun test3() {
}