Files
kotlin-fork/idea/testData/inspectionsLocal/collections/simplifiableCallChain/joinToStringWithSuspendFunctionCall.kt
T
2020-09-29 23:58:24 +09:00

8 lines
185 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
suspend fun mapString(input: String): String = ""
suspend fun main() {
val x = listOf("1", "2", "3").<caret>map { mapString(it) }.joinToString()
}