Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
j2k
/
testData
/
fileOrElement
/
for
/
indicesReversed.java
blob: 99222bdd4f9eb65fcbeeca75d3eee7210fb41eb8 [
file
] [
log
] [
blame
]
import
java
.
util
.
Collection
;
public
class
A
{
void
foo
(
Collection
<
String
>
collection
)
{
for
(
int
i
=
collection
.
size
()
-
1
;
i
>=
0
;
i
--)
{
System
.
out
.
println
(
i
);
}
}
}