Commit | Line | Data |
---|---|---|
0f5238ed TT |
1 | #include <stdio.h> |
2 | ||
3 | int | |
2d8c5d7c | 4 | main (int argc, char **argv) |
0f5238ed TT |
5 | { |
6 | int i = 0; | |
7 | goto there; | |
8 | ||
9 | here: | |
10 | printf("not here\n"); | |
11 | i = 1; | |
12 | ||
13 | there: | |
14 | printf("but here\n"); | |
15 | if (i == 0) | |
16 | goto here; | |
17 | ||
18 | done: | |
19 | return 0; | |
20 | } | |
21 |