// "Make 'doSth' protected" "true" open class A { private fun doSth() { } } class B : A() { fun bar() { doSth() } }