// Continue at the end of a for loop has no purpose
//
// Confidence: Moderate
// Copyright: (C) Gilles Muller, Julia Lawall, EMN, DIKU.  GPLv2.
// URL: http://www.emn.fr/x-info/coccinelle/rules/continue.html
// Options:

@@
position p;
@@

for (...;...;...) {
   ...
   if (...) {
     ...
-   continue;
   }
}