why is `val list = ArrayList(listOf(1))` of type `...
# announcements
k
why is
val list = ArrayList(listOf(1))
of type
ArrayList<Int!>
? I can specify the type explicitly via
ArrayList<Int>(listOf(1))
and it won't be platform type anymore.