unchanged-loop-condition
Default severity: warning
A conventional three-part loop that initializes and tests one variable but never changes that variable cannot progress as intended. This often means the post statement increments the wrong counter or is unreachable.
for index := 0; index < limit; other++ { use(index) }for index := 0; index < limit; index++ { use(index) }