Files
kotlin-fork/idea/testData/intentions/loopToCallChain/any/KT13998.kt
T
2016-10-24 18:32:04 +03:00

10 lines
218 B
Kotlin
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'any{}'"
// IS_APPLICABLE_2: false
fun foo(): Boolean {
val foo = listOf(true, true)
<caret>for (e in foo) {
if (!e) return false
}
return true
}