returnretryredobreakcontinue などの制御フロー遷移ステートメントが誤って使用されている箇所を報告します。

例:

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