/** @testcase PR#722 loop expressions not declarations */publicclassDeclarationsInLoopsCE{voidmethod(){booleanb=true;for(;b;)intj=0;// CE 7 illegal start of expression, not a statementwhile(b)intk=0;// CE 8 illegal start of expression, not a statementdointl=0;while(b);// CE 9 illegal start of expression, not a statement}}