interface T { fun getFoo(): String = "" } interface U { fun getFoo(): String } class C1 : T, U { override fun getFoo(): String { TODO("not implemented") //To change body of created functions use File | Settings | File Templates. } }