For example, like `fun <T> execute(input: T)...
# announcements
k
For example, like
fun <T> execute(input: T) { }
when we resolved
T
as
Unit
we need to call it as
execute(Unit)
but cannot call as
execute()
….