I'm confused by type inference: I have a java gene...
# announcements
m
I'm confused by type inference: I have a java generic superclass
CrudDao<C>
that some classes extend. I dynamically determine the subclass to use and try pass it to a
private fun <T : MsgSuper> store(dao : CrudDao<T>, msg : T)
.