mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
a00fa74b8d
Fixes SE-2159 / rdar://problem/27439384.
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
|