cppcheck/internaltesting/testloop.cpp

14 lines
134 B
C++

void f()
{
for (int i = 0; i < j; i++)
{
if (condition)
continue;
break;
}
}