> I cannot create just `List<Class>` the...
# announcements
v
I cannot create just
List<Class>
the Kotlin equivalent would be
List<Class<*>>
, in my opinion (almost equivalent - I think it would be
List<Class<?>>
in Java, but I'm not sure about the type erasure stuff here)