1// RUN: %clang_cc1 -rewrite-objc -fobjc-fragile-abi %s -o - 2 3@interface Intf 4@end 5 6@implementation Intf(Category) 7- (void) CatMeth {} 8@end 9 10@implementation Another 11- (void) CatMeth {} 12@end 13