Why I can override `val` of type `kotlin.MutableLi...
# getting-started
m
Why I can override
val
of type
kotlin.MutableList<Something>
with Java method with return type
java.util.List<? extends Something>
, but can't override
kotlin.List<out Something>
?