blob: 7fbf6494eae54feed5940bbfcd9c6d6c3413f140 [file] [log] [blame]
@protocol BaseProto
@end
@protocol SubProto <BaseProto>
@end
@interface UnrelatedBaseClass
@end
@interface Impl : UnrelatedBaseClass <SubProto>
- (instancetype)init;
+ (instancetype)implWithChild:(id<BaseProto>)child;
@end