...
Code Block | ||
---|---|---|
| ||
switch(x) {
case 0: foo(); break;
case 1: bar(); break;
default: /* handle error */
|
Noncompliant Code Example (Zune 30)
...
...
Code Block | ||
---|---|---|
| ||
switch(x) {
case 0: foo(); break;
case 1: bar(); break;
default: /* handle error */
|
...