Files
kotlin-fork/idea/testData/intentions/loopToCallChain/count/KT14191.kt.after
T

9 lines
277 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'filterNotNull().count()'"
// INTENTION_TEXT_2: "Replace with 'asSequence().filterNotNull().count()'"
fun f11(list: List<Any?>): Int{
val <caret>objs = list
.filterNotNull()
.count()
return objs
}