blob: ac9a6724b7dd4f7a936a35ef0932e05b4cd648c1 [file] [log] [blame]
fun foo(list: List<String>) {
val sum = 0
<spot>for (s in list) {
val x = s.calcSomething()
if (x > 0) {
sum += x
}
}</spot>
}