Files
swift-mirror/test/SILGen/Inputs/objc_bridged_block_optionality_diff.h
Saleem Abdulrasool bc27395838 Inputs: sprinkle _Null_unspecified to silence nullability-completness
When trying to figure out errors from an import failure, the nullability
completeness warnings would clutter the output making it difficult to
identify the errors.  Sprinkle the declaarations with
`_Null_unspecified` to maintain the current nullability semantics and
silence the warnings.  NFC.
2018-06-11 09:23:22 -07:00

9 lines
236 B
C

@import Foundation;
#pragma clang assume_nonnull begin
typedef void (^HandlerBlock)(NSString *(^message)(void));
#pragma clang assume_nonnull end
/// Default handler for logging.
extern _Null_unspecified HandlerBlock TheHandlerBlock;