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

6 lines
115 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun test(list: List<Int>): List<Int> {
return list.<caret>filter { it > 1 }
}