interface Foo
@Serializable
data object Bar : Foo
// Impossible to make this class serializable because its parent is not serializable and does not have exactly one constructor without parameters
I'm surprised this is forbidden. I would have expected it to serialize correctly as an empty JSON object.