1@interface InheritingSubCat @end
2
3@interface InheritingSubCat (NonClobberingCategory) @end
4
5@implementation InheritingSubCat (NonClobberingCategory) 
6-(id) unrelatedMethod { return self; }
7@end
8