Error code E0268
A loop keyword (break
or continue
) was used outside of a loop.
Erroneous code example:
ⓘ
Without a loop to break out of or continue in, no sensible action can be taken.
Please verify that you are using break
and continue
only in loops. Example: