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