Files
kotlin-fork/idea/testData/intentions/convertForEachToForLoop/complexReceiver.kt.after
T

8 lines
96 B
Plaintext
Vendored

// WITH_RUNTIME
fun main() {
val x = 1..4
for (it in x.reversed()) {
it
}
}