5 lines
126 B
Plaintext
Vendored
5 lines
126 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun foo(list: List<String?>) {
|
|
<caret>val result: String? = list.firstOrNull { it != "" }?.substring(1)
|
|
}
|