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

8 lines
201 B
Kotlin
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'mapTo(){}'"
fun foo(list: List<String>, target: MutableList<Int>) {
<caret>for (s in list) {
val l = s.length
target.add(l)
}
}