Files
kotlin-fork/idea/testData/intentions/convertForEachToForLoop/infixCall.kt
T
2015-05-02 14:03:21 +03:00

6 lines
79 B
Kotlin
Vendored

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