maybe what you really need is something like ``` a...
# announcements
s
maybe what you really need is something like
Copy code
abstract class Base {
  abstract val base: String
}

data class Simple(val foo: String, override val base: String) : Base()`