Files
kotlin-fork/idea/testData/intentions/loopToCallChain/any/kt17730.kt
T
2017-12-18 18:10:24 +01:00

13 lines
255 B
Kotlin
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'all{}'"
// IS_APPLICABLE_2: false
fun foo(): Boolean {
val list = listOf(1, 2, 3, 4, 5)
<caret>for (e in list) {
if (!(e <= 3)) {
return false
}
}
return true
}