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

7 lines
165 B
Plaintext
Vendored

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