Files
kotlin-fork/idea/testData/intentions/loopToCallChain/toCollection/addAfterLoop.kt.after
T
2016-08-23 22:47:42 +03:00

10 lines
251 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'toMutableList()'"
// IS_APPLICABLE_2: false
import java.util.ArrayList
fun foo(map: Map<Int, String>): List<String> {
val result = map.values.toMutableList()
result.add("")
return result
}