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

8 lines
110 B
Plaintext
Vendored

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