b775b901cc
#KT-17730 Fixed
8 lines
179 B
Plaintext
Vendored
8 lines
179 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'any{}'"
|
|
// IS_APPLICABLE_2: false
|
|
fun foo(): Boolean {
|
|
val list = listOf(1, 2, 3, 4, 5)
|
|
return list.any { !(it <= 3) }
|
|
}
|