9 lines
209 B
Kotlin
Vendored
9 lines
209 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'any{}'"
|
|
// IS_APPLICABLE_2: false
|
|
fun foo(list: List<Any?>): Boolean {
|
|
<caret>for (a in list) {
|
|
if (a != null) return true
|
|
}
|
|
return false
|
|
} |