// "Initialize with constructor parameter" "true" open class RGrandAccessor(x: Int) {} open class RAccessor : RGrandAccessor { val f: Int constructor(p: Boolean, f: Int) : super(1) { this.f = f } constructor(p: String) : this(true, 0) }