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

open annotation class TestAnn : Annotation {
  val x: String
    field = x
    get

  constructor(x: String) /* primary */ {
    super/*Any*/()
    /* <init>() */

  }

}

