Files
swift-mirror/test/SourceKit/Inputs/concurrency/header_concurrency.h
Rintaro Ishizaki b6119018d7 [SourceKit] Print custom attributes in interface-gen requests
Custom attributes were not printed because they are marked
'UserInaccesible'.

* Make CustomAttr 'RejectByParser' instead of 'UserInaccessible'
* Remove special treatment for Result Builder attributes
* Load implicit modules in module/header interface gen requests

rdar://79927502
2022-03-02 11:05:26 -08:00

8 lines
224 B
Objective-C

@import Foundation;
@interface ClassWithHandlerMethod
-(void)methodWithHandler:(NSString *)operation completionHandler:(void (^)(NSInteger))handler;
-(void)mainActorMethod __attribute__((__swift_attr__("@UIActor")));
@end