Reports loops that cannot complete without an index overflow or that don't loop at all.
Usually it happens because of a mistake in the update operation
Example:
void foo(int s) {
for (int i = s; i > 12; i++) { // i-- should be here
System.out.println(i);
}
}