mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
8 lines
263 B
Objective-C
8 lines
263 B
Objective-C
@protocol Test
|
|
@optional
|
|
- (nonnull id)normalObject;
|
|
- (nonnull void *)innerPointer __attribute__((objc_returns_inner_pointer));
|
|
@property (nonnull) id normalObjectProp;
|
|
@property (nonnull) void *innerPointerProp __attribute__((objc_returns_inner_pointer));
|
|
@end
|