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

11 lines
227 B
Kotlin
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'any{}'"
fun foo(list: List<String>) {
var found = false
<caret>for (s in list) {
if (s.length > 0) {
found = true
break
}
}
}