108dea5b46
So #KT-15476 Fixed
8 lines
148 B
Kotlin
Vendored
8 lines
148 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun test(): Int {
|
|
return listOf(1, 2, 3)
|
|
.<caret>filter { it > 1 }
|
|
.map { it * 2 }
|
|
.sum()
|
|
} |