customrr-cat2.m 182 B

1234567
  1. @interface InheritingSubCat @end
  2. @interface InheritingSubCat (ClobberingCategory) @end
  3. @implementation InheritingSubCat (ClobberingCategory)
  4. -(int) retainCount { return 1; }
  5. @end