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

11 lines
249 B
Kotlin
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'lastOrNull{}'"
// IS_APPLICABLE_2: false
fun foo(list: List<String>) {
var result: String? = null
<caret>for (s in list) {
if (s.length > 0) {
result = s
}
}
}