mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-19 03:07:00 +00:00
1 line
460 B
Plaintext
1 line
460 B
Plaintext
|
/* Deviance Test 8.8.0.1: Ensure illegal break and continue statements are */
/* detected */
#include <stdio.h>
main ()
{
break; /* break outside of while, do, for, switch statement */
continue; /* continue outside of while, do, for statement */
switch (1)
{
case 1: continue;
}
printf ("Failed Deviance Test 8.8.0.1\n");
}
|