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

9 lines
120 B
Kotlin
Vendored

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