PR c++/85662
[official-gcc.git] / gcc / testsuite / obj-c++.dg / try-catch-14.mm
blob1d922b509ccd8011facb3b89b5a74d432459a42c
1 /* { dg-options "-fobjc-exceptions" } */
2 /* { dg-do compile } */
4 typedef unsigned char uint8_t;
5 typedef uint8_t foo[24];
7 void thingy(foo a)
11 int main()
13     foo bar;
15     @try {
16     } 
17     @finally {
18     }
20     thingy(bar);
22     return 0;