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

8 lines
105 B
Plaintext
Vendored

fun foo() {
val list = 1..4
list.forEach { x ->
// comment
var v = x + 1
}
}