23 lines · c
1/* For use with the methods.m test */2 3@interface A4@end5 6@interface B7@end8 9@interface TestPCH10- (void)instMethod;11@end12 13@implementation TestPCH14- (void)instMethod {15 @try {16 } @catch(A *a) {17 } @catch(B *b) {18 } @catch(...) {19 } @finally {20 }21}22@end23