1*67e74705SXin Li// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 -fobjc-exceptions -o - %s 2*67e74705SXin Li// rdar://7522880 3*67e74705SXin Li 4*67e74705SXin Li@interface NSException 5*67e74705SXin Li@end 6*67e74705SXin Li 7*67e74705SXin Li@interface Foo 8*67e74705SXin Li@end 9*67e74705SXin Li 10*67e74705SXin Li@implementation Foo 11*67e74705SXin Li- (void)bar { 12*67e74705SXin Li @try { 13*67e74705SXin Li } @catch (NSException *e) { 14*67e74705SXin Li } 15*67e74705SXin Li @catch (Foo *f) { 16*67e74705SXin Li } 17*67e74705SXin Li @catch (...) { 18*67e74705SXin Li } 19*67e74705SXin Li} 20*67e74705SXin Li@end 21