// WITH_RUNTIME fun foo(list: List): Int? { for ((index, s) in list.withIndex()) { val x = s.length * index if (x > 0) return x } return null }