Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Each of A and B do their own things then fall through into C */
- switch(v) {
- case A:
- // do A things
- if (0) {
- /* FALL THRU */
- case B:
- // do B things
- }
- /* FALL THRU */
- case C:
- // do C things
- break;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement