internal open class Base { private val myFirst: String? = null } internal class Child : Base() { private val mySecond: String? = null }