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