OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [obj-c++.dg/] [try-catch-15.mm] - Rev 703

Compare with Previous | Blame | View Log

/* Test if addition of 'volatile' to object causes bogus error in presence of try-catch. */
/* { dg-options "-fobjc-exceptions" } */
/* { dg-do compile } */

@interface Exception
@end

class CppObj {
public:
    void constMethod() const {
    }
};

@interface MyObject : Exception
- (void)doSomething;
- (void)myMethod;
@end

@implementation MyObject
- (void)doSomething {
}

- (void)myMethod {
    CppObj cppObj;
    
    @try {
        [self doSomething];
    }
    @catch (Exception *exception) {
    }
    
    cppObj.constMethod();
}
@end

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.