open annotation class TestAnn : Annotation {
  constructor(x: String) /* primary */ {
    super/*Any*/()
    /* <init>() */

  }

  val x: String
    field = x
    get

}

@TestAnn(x = "testVal.property")
val testVal: String
  field = ""
  get
