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

9 lines
142 B
Plaintext
Vendored

fun foo(f: (Int) -> String) {}
fun test() {
foo(fun(it: Int): String {
// comment1
return ""
// comment2
})
}