mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
234 B
Objective-C
10 lines
234 B
Objective-C
// This file is meant to be used with the mock SDK, not the real one.
|
|
#import <Foundation.h>
|
|
|
|
@protocol ABCErrorProtocol <NSObject>
|
|
|
|
- (void)didFail:(NSError * _Nonnull)error;
|
|
- (void)didFailOptional:(NSError * _Nullable)error;
|
|
|
|
@end
|