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