/*
*
* Piece of code that has a fall through that must be suppressed
*
* QAC APPLY RELATIVE
*
*/
void jump( int location )
{
switch( location )
{
case 2:
{
printf("bye ");
}
/* fall through, QAC EXPECT 2003 */
case 1:
{
printf("bye ");
break;
}
default:
{
printf("ERROR);
break;
}
}