Files
kotlin-fork/idea/testData/intentions/convertToForEachFunctionCall/commentsInBody.kt
T
2015-12-17 11:11:23 +03:00

12 lines
201 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
val list = 1..4
<caret>for (x in list) { // start of loop
// comment 1
var v = x + 1
// comment 2
v++
// end of loop
}
}