// WITH_RUNTIME fun test(list: List) { val mapTo: MutableList = list.asSequence().filter { it > 1 }.mapTo(mutableListOf()) { it } }