8 lines
184 B
Kotlin
Vendored
8 lines
184 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// IS_APPLICABLE: false
|
|
fun foo(list: List<String>, target: MutableList<Int>) {
|
|
<caret>for (s in list) {
|
|
if (s.length > 0)
|
|
target.add(0)
|
|
}
|
|
} |