...
Code Block | ||
---|---|---|
| ||
public void f(boolean a, boolean b) { while ( (a == b) && flag ) { /* ... */ } } |
Exceptions
EXP51:EX0: Using the assignment operator in these conditional expressions is permissible if it is not the controlling expression, as shown in the following compliant example:
...