// WITH_RUNTIME fun foo(list: List) { for ((i, s) in list.withIndex()) { println(i) val x = s.length * i if (x > 1000) break } }