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

struct Point {
  short v;
  short h;
};

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

 Point p = eventLocation;
}