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