blob: f68ec731237ea8b4c9322dde44108c6a06edb437 [file] [log] [blame]
// WITH_RUNTIME
// IS_APPLICABLE: false
// IS_APPLICABLE_2: false
fun foo(list: List<String>): String? {
<caret>for (s in list) {
for (line in s.lines()) {
if (line.isNotBlank() && line.length < s.length / 10) return line
}
}
return null
}