public class ContinueChecksBottomClause
{
	public static void main (String[] args)
	{
		int counter = 0;
		do {
			counter++;
			System.out.println("Counter is "+counter);
			if (counter < 10) continue;
		} while (false);
	}
}

/* Output:

Counter is 1

 * One cannot simply think of "continue" as "going back to the top"
 * or "start the body of the loop again".  Here, the while condition
 * is checked and the loop aborted, even though the while condition
 * check occurs below the apparent area of the thread of control in
 * the source file. */
