Code: Select all
BAD1:int x=0;/*illegal start of expression*/
BAD2:x++;/*cannot find symbol*/
But if the code is presenting on lines independently this code would work.
Code: Select all
int done=0;
EMPTY_LABEL:++done;
Perhaps the code is present it in a sequence of lines if not is a bug.
