20 lines · plain
1// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 -fobjc-exceptions -o - %s2 3@interface NSException4@end5 6@interface Foo7@end8 9@implementation Foo10- (void)bar {11 @try {12 } @catch (NSException *e) {13 }14 @catch (Foo *f) {15 }16 @catch (...) {17 }18}19@end20