open class Base {
  constructor() /* primary */ {
    super/*Any*/()
        /* InstanceInitializerCall */

  }




}

class Test : Base {
  constructor() {
    super/*Base*/()
        /* InstanceInitializerCall */

  }

  constructor(xx: Int) {
    super/*Base*/()
        /* InstanceInitializerCall */

  }

  constructor(xx: Short) {
    this/*Test*/()
  }




}

