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

7 lines
103 B
Kotlin
Vendored

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