Per earlier question about data class extending se...
# announcements
a
Per earlier question about data class extending sealed class and duplicating properties in the constructor, is there plans to add inheriting constructors? Something like what swift supports where if a subclass doesn't define a constructor, it inherits the constructor of the super class.
b
What should happen when there are multiple constructors? How would you opt-out of not having it magically inherit the constructor?
a
Declaring a constructor and explicitly picking one to use
Well it would be opt in
b
What would that look like?