class Z {
  constructor() /* primary */ {
    super/*Any*/()
    /* <init>() */

  }

  fun test2() {
    Companion.test()
  }

  companion object Companion {
    private constructor() /* primary */ {
      super/*Any*/()
      /* <init>() */

    }

    fun test() {
    }

  }

}
