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

6 lines
87 B
Kotlin
Vendored

// WITH_RUNTIME
fun main() {
val x = 1..4
x.reversed().forEach<caret> { it }
}