skip
C:
while (f(b++));
Gont:
while (f(b++)) skip;
This is to disallow common C's mistake:
while (cond); do_sth;
(note `;' after while).