Files
kotlin-fork/idea/testData/intentions/lambdaToAnonymousFunction/explicitParameterName.kt.after
T
2020-02-04 21:34:53 +07:00

7 lines
118 B
Plaintext
Vendored

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