Files
kotlin-fork/idea/testData/intentions/convertToForEachFunctionCall/commentsInBody2.kt
T
2015-05-27 16:15:52 +03:00

8 lines
110 B
Kotlin
Vendored

fun foo() {
val list = 1..4
<caret>for (x in list) {
// comment
var v = x + 1
}
}