Reports the loop conditions that are not updated inside the loop. This can indicate code defects and cause infinite loops at runtime.

Example:


    int i = 0, j = 0;
    while (i < 10) {
        ++j;
    }