```Kotlin interface CookieJar { /** * Saves cookies */ fun saveFromResponse(url: String) } class CookieJarImpl() : CookieJar { override fun saveFromResponse(url: String) {} } class JavaNetCookieJar private constructor( delegate: CookieJarImpl, ) : CookieJar by delegate ``` With K1 the `JavaNetCookieJar` got `override` keyword and kdoc from the interface <img width="723" alt="image" src="https://github.com/Kotlin/dokka/assets/7689049/8d97de30-c3f7-41eb-8ff0-7c2653c43652"> --- In K2 both are missed: <img width="674" alt="image" src="https://github.com/Kotlin/dokka/assets/7689049/27557bd6-724d-414e-bf70-813c02d7b471"> **Installation** - Dokka version: 1.9.20 Parent: https://github.com/Kotlin/dokka/issues/3328