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

9 lines
120 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {}
fun test() {
<caret>for (l in listOf(1, 2)) {
foo(); foo() // comment
}
}