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

  }

  fun test() {
  }

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

    }

    fun test2() {
      Z.test()
    }

  }

}
