mirror of
https://github.com/darlinghq/darling-objc4.git
synced 2024-11-27 06:00:32 +00:00
8 lines
182 B
Objective-C
8 lines
182 B
Objective-C
@interface InheritingSubCat @end
|
|
|
|
@interface InheritingSubCat (ClobberingCategory) @end
|
|
|
|
@implementation InheritingSubCat (ClobberingCategory)
|
|
-(int) retainCount { return 1; }
|
|
@end
|