10 lines
275 B
Kotlin
Vendored
10 lines
275 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'toMutableSet()'"
|
|
// IS_APPLICABLE_2: false
|
|
fun foo(map: Map<Int, String>): MutableCollection<String> {
|
|
val result = mutableSetOf<String>()
|
|
<caret>for (s in map.values) {
|
|
result.add(s)
|
|
}
|
|
return result
|
|
} |