10 lines
251 B
Plaintext
Vendored
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
|
|
} |