Files
kotlin-fork/idea/testData/intentions/lambdaToAnonymousFunction/explicitParameterName.kt
T

5 lines
85 B
Kotlin
Vendored

fun bar(f: (Int, Int) -> String) {}
fun test() {
bar <caret>{ i, j -> "$i$j" }
}