e6f4d6e6fa
^KT-65406
18 lines
227 B
Kotlin
Vendored
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() {
|
|
}
|
|
|