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

7 lines
177 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'count{}'"
// IS_APPLICABLE_2: false
fun f11(list: List<Any?>): Int{
val <caret>c = list.count { it != null }
return c
}