Files
kotlin-fork/idea/testData/inspectionsLocal/collections/convertCallChainIntoSequence/implicitReceiver.kt
T
2018-10-09 11:33:55 +03:00

5 lines
103 B
Kotlin
Vendored

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