1465418c2b
#KT-7151 Fixed
8 lines
140 B
Kotlin
Vendored
8 lines
140 B
Kotlin
Vendored
public class A {
|
|
fun foo(array: Array<String>) {
|
|
for (i in array.indices.reversed()) {
|
|
println(i)
|
|
}
|
|
}
|
|
}
|