I made an interface with a `fun getText(): String`...
# announcements
m
I made an interface with a
fun getText(): String
and try to implement it like
enum class OverlaySettings(val text: String): GetText {
, which “works”, but Kotlin complains that this is an “accidental” override. I’m not doing this accidentally 🙂 How do I tell Kotlin that this is exactly what I mean?