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