fix for last commit
[cparser] / parsetest / MS / try.c
1 int test(int a, int b) {
2         __try {
3                 a = a / b;
4         }
5         if(0) {
6                 a = 0;
7         }
8 }
9
10 int main(int argc, char *argv[]) {
11         int x;
12         __try {
13                 x = argc / 0;
14         }
15         __finally {
16                 printf("Should always print this!\n");
17         }
18         return 0;
19 }