blob: 9da61bd02b51c99fc51a86ad6832835f360e7376 [file] [log] [blame]
// 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
}