539c55c5b2
Part of KT-26650
5 lines
103 B
Kotlin
Vendored
5 lines
103 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun List<Int>.test(): List<Int> {
|
|
return <caret>filter { it > 1 }.map { it * 2 }
|
|
} |