mirror of
https://github.com/darlinghq/darling-objc4.git
synced 2025-03-01 10:48:37 +00:00
8 lines
194 B
Objective-C
8 lines
194 B
Objective-C
@interface InheritingSubCat @end
|
|
|
|
@interface InheritingSubCat (NonClobberingCategory) @end
|
|
|
|
@implementation InheritingSubCat (NonClobberingCategory)
|
|
-(id) unrelatedMethod { return self; }
|
|
@end
|