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

8 lines
199 B
Plaintext
Vendored

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