class Derived : Base { init { .#value = 0 } constructor() /* primary */ { super/*Base*/() /* () */ } fun getValue(): Int { return .#value } fun setValue(value: Int) { .#value = value } }