mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
f9b3e40595
Resolves rdar://80546521
11 lines
246 B
Objective-C
11 lines
246 B
Objective-C
@import Foundation;
|
|
|
|
@interface AsyncImports : NSObject
|
|
|
|
-(void)methodWithCompletion:(void (^)(void))completionHandler;
|
|
|
|
-(void)propWithCompletion:(void (^)(BOOL))completionHandler
|
|
__attribute__((swift_async_name("getter:asyncProp()")));
|
|
|
|
@end
|