Files
kotlin-fork/idea/testData/intentions/loopToCallChain/firstOrNull/ifAssign_preserveComments.kt.after
T
Dmitry Gridin 70185ba2a6 Formatter, NJ2K: fix indent for comments inside function literals
#KT-4194 Fixed
#KT-31881 Fixed
#KT-34673 Fixed
#KT-35152 Fixed
2019-11-29 16:28:59 +07:00

10 lines
307 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'firstOrNull{}'"
// IS_APPLICABLE_2: false
fun foo(list: List<String>) {
// string should be non-empty
// save it into result
val result: String? = list.firstOrNull { // search for first non-empty string in the list
it.length > 0
}
}