Files
kotlin-fork/idea/testData/intentions/replaceUnderscoreWithParameterName/lambdaNoNames.kt
T

8 lines
101 B
Kotlin
Vendored

fun foo(f: (Int, Int, Int) -> Unit) {
f(1, 2, 3)
}
fun bar() {
foo { _, <caret>_, _ -> }
}