Files
kotlin-fork/idea/testData/intentions/convertForEachToForLoop/complexReceiver.kt
T
2015-04-16 22:00:54 +03:00

6 lines
86 B
Kotlin
Vendored

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