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

  }

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

    }




  }




}

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

  }

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

    }




  }




}

