8 lines
202 B
Plaintext
Vendored
8 lines
202 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'firstOrNull{}'"
|
|
fun foo(list: List<String?>) {
|
|
val <caret>result: String? = list
|
|
.firstOrNull { it != "" }
|
|
?.substring(1)
|
|
}
|