// "Implement members" "true" // DISABLE-ERRORS abstract actual class Bar { abstract actual fun foo() } class X : Bar() { override fun foo() { TODO("not implemented") //To change body of created functions use File | Settings | File Templates. } }