4 lines
114 B
Plaintext
Vendored
4 lines
114 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun foo(list: List<String>) {
|
|
<caret>val result: String? = list.lastOrNull { it.length > 0 }
|
|
} |