// PROBLEM: none // WITH_RUNTIME fun test(list: List): List { return list .reversed() .map { it + 1 } .dropLast(1) .takeLast(2) }