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

9 lines
113 B
Kotlin
Vendored

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