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