Files
kotlin-fork/idea/testData/inspectionsLocal/collections/convertCallChainIntoSequence/simple.kt
T
2018-08-08 10:29:10 +03:00

5 lines
109 B
Kotlin
Vendored

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