// WITH_RUNTIME // INTENTION_TEXT: "Replace with 'firstOrNull{}'" // IS_APPLICABLE_2: false fun foo(list: List) { var result: String? = null for (s in list) { if (s.length > 0) { result = s.substring(0, s.length - 1) break } } } fun bar(s: String): String = s