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() {
}
