diffblue-cbmc/regression/cbmc/for1/main.c

15 lines
107 B
C

int main() {
int i=0;
for(;;)
{
i++;
if(i==30) break;
}
assert(i==30);
return 0;
}