interface Some { fun foo(some : Int?) : Int } class SomeOther : Some { override fun foo(some: Int?): Int { TODO("Not yet implemented") } }