Files
kotlin-fork/idea/testData/intentions/lambdaToAnonymousFunction/explicitParameterName.kt.after
T
2018-05-16 13:01:36 +03: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"
})
}