9a725b99b2
#KT-26650 Fixed
5 lines
111 B
Kotlin
Vendored
5 lines
111 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun test(i: Iterable<Int>): List<Int> {
|
|
return i.<caret>filter { it > 1 }.map { it * 2 }
|
|
} |