23 lines
		
	
	
		
			258 B
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			258 B
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
/* For use with the methods.m test */
 | 
						|
 | 
						|
@interface A
 | 
						|
@end
 | 
						|
 | 
						|
@interface B
 | 
						|
@end
 | 
						|
 | 
						|
@interface TestPCH
 | 
						|
- (void)instMethod;
 | 
						|
@end
 | 
						|
 | 
						|
@implementation TestPCH
 | 
						|
- (void)instMethod {
 | 
						|
  @try {
 | 
						|
  } @catch(A *a) {
 | 
						|
  } @catch(B *b) {
 | 
						|
  } @catch(...) {
 | 
						|
  } @finally {
 | 
						|
  }
 | 
						|
}
 | 
						|
@end
 |