Files
swift-mirror/validation-test/SILGen/Inputs/rdar85526916.h
2022-04-20 16:40:52 -07:00

22 lines
963 B
Objective-C

#include <Foundation/Foundation.h>
#pragma clang assume_nonnull begin
@interface PFXObject : NSObject
- (void)performGetStringIdentityWithCompletionHandler:
(void (^)(NSString * _Nonnull(^ _Nonnull)(NSString * _Nonnull)))completionHandler;
- (void)performGetStringAppendWithCompletionHandler:
(void (^)(NSString * _Nonnull(^ _Nonnull)(NSString * _Nonnull, NSString * _Nonnull)))completionHandler;
- (void)performGetIntegerIdentityWithCompletionHandler:
(void (^)(NSInteger(^ _Nonnull)(NSInteger)))completionHandler;
- (void)performGetIntegerSubtractWithCompletionHandler:
(void (^)(NSInteger(^ _Nonnull)(NSInteger, NSInteger)))completionHandler;
- (void)performGetUIntegerIdentityWithCompletionHandler:
(void (^)(NSUInteger(^ _Nonnull)(NSUInteger)))completionHandler;
- (void)performGetUIntegerAddWithCompletionHandler:
(void (^)(NSUInteger(^ _Nonnull)(NSUInteger, NSUInteger)))completionHandler;
@end
#pragma clang assume_nonnull end