When using _for-loops as while-loops_ ``` for (int i : {0,1}) { if (i == 0) continue; } ``` Produces an endless loop, because the increment of ` ++__begin1` is skipped