9 lines
221 B
Plaintext
Vendored
9 lines
221 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'count{}'"
|
|
// IS_APPLICABLE_2: false
|
|
fun foo(list: List<String>): Int {
|
|
val <caret>count = bar() + list.count { it.isNotBlank() }
|
|
return count
|
|
}
|
|
|
|
fun bar(): Int = 0 |