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