const val ONE: Int
  field = 1
  get

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

  }

  val x: Int
    field = x
    get

}

@A(x = 1)
fun test1() {
}

@A(x = 2)
fun test2() {
}
