blob: a26371cf2f692f0c466eb96a9f289ef8efa8a68f [file] [log] [blame]
/* APPLE LOCAL file radar 4451818 */
/* 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 );
}