Files
swift-mirror/test/SourceKit/DocSupport/Inputs/async/async.h
2021-07-16 13:35:50 +10:00

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