blob: 6e6fb1c24cc6e5ed5f19f4ac234224fd1c322325 [file] [log] [blame]
John McCall260611a2012-06-20 06:18:46 +00001// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 -fobjc-exceptions -o - %s
Fariborz Jahanian66867c52010-01-12 01:22:23 +00002// rdar://7522880
3
4@interface NSException
5@end
6
7@interface Foo
8@end
9
10@implementation Foo
11- (void)bar {
12 @try {
13 } @catch (NSException *e) {
14 }
15 @catch (Foo *f) {
16 }
17 @catch (...) {
18 }
19}
20@end