URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [obj-c++.dg/] [exceptions-1.mm] - Rev 703
Compare with Previous | Blame | View Log
/* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, November 2010. *//* { dg-options "-fobjc-exceptions" } *//* { dg-do compile } *//* This test checks the syntax @catch (...) which catches anyexceptions. At the moment, @catch (...) is identical to @catch (idexception). */#include <objc/objc.h>@interface MyObject{Class isa;}@end@implementation MyObject@endint test (id object){int i = 0;@try{@throw object;}@catch (MyObject *o){i += 1;}@catch (...){i += 2;}@finally{i += 4;}return i;}
