Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #import <Foundation/Foundation.h>
- @interface Base<T : NSArray*> : NSObject
- - (void)doStuff:(T)data;
- @end
- @interface Derived<T: NSMutableArray*> : Base<T>
- @end
- @implementation Derived
- - (void)doStuff:(NSMutableArray *)data {
- }
- @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement