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

5 lines
118 B
Plaintext
Vendored

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