报告控制流跳转语句的错误使用情况,例如 returnretryredobreakcontinue

示例:

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