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