mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
15 lines
360 B
Objective-C
15 lines
360 B
Objective-C
@protocol P
|
|
@property (nonatomic, copy, readonly, nullable) id property;
|
|
- (void) method;
|
|
- (id)objectForKeyedSubscript:(id)subscript;
|
|
- (instancetype)initWithFoo:(id)foo;
|
|
@end
|
|
|
|
@protocol Q <P>
|
|
@property (nonatomic, copy, readonly, nullable) id property;
|
|
- (void) method;
|
|
- (id)objectForKeyedSubscript:(id)subscript;
|
|
- (instancetype)initWithFoo:(id)foo;
|
|
@end
|
|
|