try-catch-7.mm   [plain text]


/* APPLE LOCAL file Objective-C++ */
/* { dg-do compile } */
/* { dg-options "-fobjc-exceptions" } */

#include <objc/Object.h>

int main (int argc, const char * argv[]) {

    Object * pool = [Object new];
    int a;

    if ( 1 ) {
    
        @try {
            a = 1;
        }
        
        @catch (Object *e) {
            a = 2;
        }
        
        @finally {
            a = 3;
        }
    }
    
    [pool free];
    return 0;
}