aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/obj-c++.dg/try-catch-16.mm
blob: 4aea2647a10e1b3b9f77b0c490be5147e07b3cc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Test if addition of 'volatile' to object causes bogus error in presence of try-catch. */
/* { dg-options "-fobjc-exceptions" } */
/* { dg-do compile } */

extern void func( void * outData) ;
struct Point {
  short v;
  short h;
};


void foo ()
{
 Point eventLocation;
 @try {
 } @catch (id iiii) {
 }

   func( &eventLocation );
}