mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
14 lines
226 B
Objective-C
14 lines
226 B
Objective-C
@protocol BaseProto
|
|
@end
|
|
|
|
@protocol SubProto <BaseProto>
|
|
@end
|
|
|
|
@interface UnrelatedBaseClass
|
|
@end
|
|
|
|
@interface Impl : UnrelatedBaseClass <SubProto>
|
|
- (instancetype)init;
|
|
+ (instancetype)implWithChild:(id<BaseProto>)child;
|
|
@end
|