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