Files
kotlin-fork/idea/testData/inspectionsLocal/complexRedundantLet/callChainWithLineBreak.kt.after
T
2020-02-04 21:34:53 +07:00

7 lines
131 B
Plaintext
Vendored

// WITH_RUNTIME
// HIGHLIGHT: INFORMATION
fun test(list: List<Int>) {
println(list.filter { it > 1 }
.filter { it > 2 })
}