// PROBLEM: none // WITH_RUNTIME fun test(list: List): List { return list .filter { it > 2 } .dropLast(1) .filter { it > 2 } }