Files
kotlin-fork/idea/testData/intentions/convertForEachToForLoop/keepComments.kt
T
2015-05-27 16:15:54 +03:00

5 lines
156 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo(list: List<String?>) {
list.filter { it != null } /* filter out nulls */
.forEach<caret> { print(1..4) /* print x */ }
}