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

12 lines
248 B
Kotlin
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'firstOrNull{}'"
// IS_APPLICABLE_2: false
fun foo(array: Array<String>): String? {
<caret>for (s in array) {
if (s.isNotBlank()) {
return s
}
}
return null
}