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

9 lines
227 B
Plaintext
Vendored

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