// "Implement members" "true" abstract class A { abstract fun foo() } class B : A() { override fun foo() { throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates. } }