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

7 lines
103 B
Kotlin
Vendored

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