darling-objc4/test/customrr-cat1.m
2020-06-09 21:50:17 -04:00

8 lines
194 B
Objective-C

@interface InheritingSubCat @end
@interface InheritingSubCat (NonClobberingCategory) @end
@implementation InheritingSubCat (NonClobberingCategory)
-(id) unrelatedMethod { return self; }
@end