564e408434
See the KDoc of the property for the reasons why it was created
5 lines
185 B
Kotlin
Vendored
5 lines
185 B
Kotlin
Vendored
// @ParameterName annotation takes precedence over name in function type parameter
|
|
fun call(x: (@ParameterName("first") @ParameterName("second") Int) -> Unit) {
|
|
<expr>x(1)</expr>
|
|
}
|