mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Partially reverts f4f8349 (from July!) which caused us to start
importing global blocks with unbridged parameters, breaking source
compatibility. I'm still investigating whether there's an actual hole
in the logic; see next few commits.
rdar://problem/34913634
8 lines
362 B
Objective-C
8 lines
362 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
extern NSString * _Nonnull (^ _Nonnull mutableBlockGlobal)(NSString * _Nonnull);
|
|
extern NSString * _Nonnull (^ _Nonnull const constBlockGlobal)(NSString * _Nonnull);
|
|
|
|
extern NSString * _Nonnull (* _Nonnull mutableFPGlobal)(NSString * _Nonnull);
|
|
extern NSString * _Nonnull (* _Nonnull const constFPGlobal)(NSString * _Nonnull);
|