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

6 lines
156 B
Plaintext
Vendored

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