> I've yet to find an interesting use case for ...
# announcements
v
I've yet to find an interesting use case for companion object inheritance, has anyone used that feature to good effect?
@cedric: we use this feature a lot with parcelable objects:
Copy code
data class User(val firstName: String, val lastName: String) : Parcelable {
  companion object CREATOR : Parcelable.Creator<User> {
    // parcelable stuff
  }
}