// WITH_RUNTIME fun foo(list: List): Int? { for (s in list) { var length = s.length if (length > 0) return length } return null }