`kotlin.collections.List` is covariant. So it make...
# announcements
o
kotlin.collections.List
is covariant. So it makes sense that
List<String>
in Kotlin translates to
List<? extends String>
in Java. If you use
MutableList<String>
in Kotlin, you'll get the desired result of
List<String>
in Java