// WITH_RUNTIME fun test(list: List) { val mapIndexedNotNullTo: MutableList = list.filter { it > 1 }.mapIndexedNotNullTo(mutableListOf()) { index, i -> i } }