Files
kotlin-fork/idea/testData/intentions/loopToCallChain/moveInitializationsCloserToLoop.kt
T
2016-08-16 17:38:17 +03:00

16 lines
258 B
Kotlin
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'map{}'"
// IS_APPLICABLE_2: false
import java.util.*
fun foo(list: List<String>) {
val result = ArrayList<Int>()
bar()
<caret>for (s in list) {
result.add(s.length)
}
}
fun bar(){}