but Java has a slight advantage here because `List...
# reflect
u
but Java has a slight advantage here because
List.class
means the class of raw List, whereas in Kotlin
List::class
is the class of List of something (
List<*>
)