/* Contributed by Nicola Pero , November 2010. */ /* { dg-options "-fobjc-exceptions" } */ /* { dg-do compile } */ /* This test checks the syntax @catch (...) which catches any exceptions. At the moment, @catch (...) is identical to @catch (id exception). */ #include @interface MyObject { Class isa; } @end @implementation MyObject @end int test (id object) { int i = 0; @try { @throw object; } @catch (MyObject *o) { i += 1; } @catch (...) { i += 2; } @finally { i += 4; } return i; }