Files
kotlin-fork/idea/testData/intentions/loopToCallChain/lastOrNull_ifAssign.kt.after
T
2016-08-16 17:38:17 +03:00

6 lines
189 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'lastOrNull{}'"
// IS_APPLICABLE_2: false
fun foo(list: List<String>) {
val <caret>result: String? = list.lastOrNull { it.length > 0 }
}