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

6 lines
117 B
Plaintext
Vendored

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