abstract class C { abstract fun f(a: A) } fun f() { class R object : C() { override fun f(a: R) { TODO("not implemented") //To change body of created functions use File | Settings | File Templates. } } }