Because Kotlin's immutable list is declared as `in...
# announcements
k
Because Kotlin's immutable list is declared as
interface List<out E>
and that is compiled to a wildcard. I think you can use
MutableList
, since that doesn't have a wildcard.