5 lines
170 B
Plaintext
Vendored
5 lines
170 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'forEachIndexed{}'"
|
|
fun foo(list: List<String>) {
|
|
list.forEachIndexed { index, s -> println(s.hashCode() * index) }
|
|
} |