<@U0BRK9HC5> I need inheritance, so, I can't use a...
# announcements
k
@gildor I need inheritance, so, I can't use a data class. This approach also means the super type parameters must always be declared in the subclasses. For example:
Copy code
abstract class Super(val name: String)

class Child(name: String, val age: Int): Super(name)