Files
kotlin-fork/idea/testData/inspectionsLocal/collections/convertCallChainIntoSequence/termination/reduceOrNull.kt
T
2020-08-12 16:28:29 +03:00

5 lines
115 B
Kotlin
Vendored

// WITH_RUNTIME
fun test(list: List<Int>) {
list.<caret>filter { it > 1 }.reduceOrNull { acc, i -> acc + i }
}