we used to support both `fun <T> box` and `f...
# language-proposals
y
we used to support both
fun <T> box
and
fun box<T>
but decided to allow only the former because a type parameter can be used as part of the extension function receiver type, and
fun T.box<T>
looks weird because you're referencing a name before you define it