mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
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
8 lines
224 B
Objective-C
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
|