Files
kotlin-fork/idea/testData/intentions/convertToForEachFunctionCall/endOfLineComment2.kt.after
T

9 lines
108 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo() {}
fun test() {
listOf(1, 2).forEach { l ->
foo() // comment
}
}