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

8 lines
110 B
Kotlin
Vendored

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