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

6 lines
79 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
val x = 1..4
x.<caret>forEach { a -> a }
}