// WITH_RUNTIME fun foo(list: List): String? { return list .flatMap { it.lines() } .firstOrNull { it.isNotBlank() } }