1 /* Test that Objective-C exceptions cause an error with -fobjc-exceptions. */
2 /* { dg-do compile } */
6 int dummy (int number, Object *o)
8 @throw o; /* { dg-error ".-fobjc-exceptions. is required to enable Objective-C exception syntax" } */
10 @try { /* Nothing, error has already been produced. */
12 @throw o; /* Nothing, error has already been produced. */
17 @throw; /* Nothing, error has already been produced. */
24 @synchronized (o) /* Nothing, error has already been produced. */