Files
kotlin-fork/idea/testData/inspectionsLocal/collections/convertCallChainIntoSequence/iterable.kt
T
2018-10-09 12:22:17 +03:00

5 lines
111 B
Kotlin
Vendored

// WITH_RUNTIME
fun test(i: Iterable<Int>): List<Int> {
return i.<caret>filter { it > 1 }.map { it * 2 }
}