13 lines
177 B
Plaintext
Vendored
13 lines
177 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() {
|
|
}
|
|
|