```val funtionType: (index: Int) -> Unit funct...
# language-proposals
x
Copy code
val funtionType: (index: Int) -> Unit

functionType(index = 1) // Named arguments are not allowed for function types
is there a reason why it is not allowed?
1
m
It looks like parameter names are generally not preserved for lambdas. I too wonder why is that and whether it can be fixed.