blob: b007c74f7d48bcbac5dbdfacb5fffce60274e7d3 [file] [log] [blame]
fun foo(list: List<String>) {
val sum = <spot>list
.asSequence()
.map { it.calcSomething() }
.filter { it > 0 }
.sumBy { it }</spot>
}