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

8 lines
116 B
Kotlin
Vendored

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