E5010 Runtime Errors
continue-outside-loop
continue not inside loop
When this occurs
`continue` outside for/while
Example error message
error[E5010]:
continue statement outside loop
How to fix
`continue` can only be used inside `for`, `while`, or `for_each` loops.