7 lines
184 B
Plaintext
Vendored
7 lines
184 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'firstOrNull{}'"
|
|
fun foo(list: List<String>) {
|
|
var <caret>result: String? = list.firstOrNull { it.length > 0 }
|
|
|
|
result += "1"
|
|
} |