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

9 lines
110 B
Kotlin
Vendored

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