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

7 lines
165 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'all{}'"
// IS_APPLICABLE_2: false
fun foo(): Boolean {
val foo = listOf(true, true)
return foo.all { it }
}