10 lines
238 B
Plaintext
Vendored
10 lines
238 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'firstOrNull{}'"
|
|
fun foo(list: List<String>) {
|
|
val <caret>result = list
|
|
.firstOrNull { it.length > 0 }
|
|
?.let { bar(it) } ?: ""
|
|
}
|
|
|
|
fun bar(s: String): String = s
|