- Add checks to if, for, while, do, and labeled statements to
make
sure that child statements are not local variable declarations
or
type declaration statements. The following (and similar)
should be
disallowed.
if (b)
int j=0;
else
j=1;