Files
kotlin-fork/idea/testData/inspectionsLocal/complexRedundantLet/callChainWithLineBreak.kt.after
T
2020-01-17 21:02:54 +07:00

9 lines
149 B
Plaintext
Vendored

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