eae23b548f
#KT-14294 Fixed
13 lines
425 B
Plaintext
Vendored
13 lines
425 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'filterNotNull().firstOrNull{}'"
|
|
// INTENTION_TEXT_2: "Replace with 'asSequence().filterNotNull().firstOrNull{}'"
|
|
|
|
fun getFirstValue() = "value"
|
|
|
|
fun foo(list: List<String?>): String? {
|
|
val value = getFirstValue()
|
|
val <caret>found: String? = list
|
|
.filterNotNull()
|
|
.firstOrNull { !it.startsWith("IMG:") && it.contains(value) }
|
|
return found
|
|
} |