T
Size: a a a
T
(
val a: List<Int> = listOf(1)
if (a is MutableList) {
a.add(3)
}
T
(
T
T
T
T
public interface MutableList<E> : List<E>, MutableCollection<E> {...}
T
ST
(
UnsupportedOperationException
(
ST
as MutableList
?(
as MutableList
?ST
ST
(
T
T