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

10 lines
210 B
Kotlin
Vendored

// WITH_RUNTIME
import java.util.ArrayList
fun foo(map: Map<Int, String>): List<String> {
val result = ArrayList<String>()
<caret>for (s in map.values) {
result.add(s)
}
return result
}