Reports the incorrect use of control flow jump statements, such as return, retry, redo, break, and continue.

Example:

i = 1
while true
  if i * 6 >= 30
    retry
  end
  puts i * 6
  i += 1
end