object Z {
  private constructor() /* primary */ {
    super/*Any*/()
        /* InstanceInitializerCall */

  }

  fun test() {
  }

  class A {
    constructor() /* primary */ {
      super/*Any*/()
            /* InstanceInitializerCall */

    }

    fun test2() {
      Z.test()
    }




  }




}

