Is it possible to create a generic type parameter ...
# announcements
l
Is it possible to create a generic type parameter that has a default, to help the compiler?
Copy code
fun <T = Any> foo(...)
doesn't quite work
🚫 1