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