Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
j2k
/
testData
/
fileOrElement
/
for
/
arrayIndicesReversed.kt
blob: ccee98faeaa25d494d21e89f7f319d30fe50886d [
file
] [
log
] [
blame
]
class
A
{
internal
fun foo
(
array
:
Array
<
String
>)
{
for
(
i
in
array
.
indices
.
reversed
())
{
println
(
i
)
}
}
}