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