Chris Lattner | 0bfaf3b | 2002-04-08 18:48:27 +0000 | [diff] [blame^] | 1 | int printf(const char *, ...); |
2 | int foo(); | ||||
3 | |||||
4 | int main() { | ||||
5 | while (foo()) { | ||||
6 | switch (foo()) { | ||||
7 | case 0: | ||||
8 | case 1: | ||||
9 | case 2: | ||||
10 | case 3: | ||||
11 | printf("3"); | ||||
12 | case 4: printf("4"); | ||||
13 | case 5: | ||||
14 | case 6: | ||||
15 | default: | ||||
16 | break; | ||||
17 | } | ||||
18 | } | ||||
19 | return 0; | ||||
20 | } |