Files
kotlin-fork/idea/testData/intentions/lambdaToAnonymousFunction/hasComment.kt.after
T

9 lines
142 B
Plaintext
Vendored

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