Files
swift-mirror/test/PrintAsObjC/Inputs/error-delegate.h
Alsey Coleman Miller a00fa74b8d [PrintAsObjC] Fix printing of 'Error' values as 'NSError *'.
Fixes SE-2159 / rdar://problem/27439384.
2016-07-26 11:50:40 -07:00

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