108dea5b46
So #KT-15476 Fixed
10 lines
210 B
Kotlin
Vendored
10 lines
210 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun test(list: List<Int>): List<Int> {
|
|
return list
|
|
.reversed()
|
|
.<caret>map { it + 1 }
|
|
.map { it + 1 }
|
|
.dropLast(1)
|
|
.takeLast(2)
|
|
} |