Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

DeclarationsInLoopsCE.java 402B

1234567891011
  1. /** @testcase PR#722 loop expressions not declarations */
  2. public class DeclarationsInLoopsCE {
  3. void method() {
  4. boolean b = true;
  5. for (;b;) int j = 0; // CE 7 illegal start of expression, not a statement
  6. while (b) int k = 0; // CE 8 illegal start of expression, not a statement
  7. do int l = 0; while (b); // CE 9 illegal start of expression, not a statement
  8. }
  9. }