class Derived : Base {
  constructor() /* primary */ {
    super/*Base*/()
        /* InstanceInitializerCall */

  }

  init {
    #value = 0
  }

  fun getValue(): Int {
    return #value
  }

  fun setValue(value: Int) {
    #value = value
  }




}

