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

7 lines
154 B
Plaintext
Vendored

// WITH_RUNTIME
suspend fun mapString(input: String): String? = ""
suspend fun main() {
val x = listOf("1", "2", "3").mapNotNull { mapString(it) }
}