<@U1R51JE9E>: It's because `List` is covariant (`i...
# getting-started
e
@bdh2: It's because
List
is covariant (
interface List<out E>
) but
MutableList
is not (
interface MutableList<E>
)