do you mean at the call site we should reject non-...
# reflect
u
do you mean at the call site we should reject non-reified type arguments and only allow classes and other reified type parameters? So
javaClass<List<String>>()
would be forbidden, but
javaClass<List>()
allowed?