46193f3ef7
#KT-5692 Fixed
10 lines
200 B
Java
Vendored
10 lines
200 B
Java
Vendored
import java.util.Collection;
|
|
|
|
public class A {
|
|
void foo(Collection<String> collection) {
|
|
for(int i = collection.size(); i >= 0; i--) {
|
|
System.out.println(i);
|
|
}
|
|
}
|
|
}
|