Files
swift-mirror/test/SILGen/Inputs/modify_objc.h
John McCall b80618fc80 Replace materializeForSet with the modify coroutine.
Most of this patch is just removing special cases for materializeForSet
or other fairly mechanical replacements.  Unfortunately, the rest is
still a fairly big change, and not one that can be easily split apart
because of the quite reasonable reliance on metaprogramming throughout
the compiler.  And, of course, there are a bunch of test updates that
have to be sync'ed with the actual change to code-generation.

This is SR-7134.
2018-08-27 03:24:43 -04:00

7 lines
232 B
Objective-C

@import Foundation;
@interface ClassWithBlockProperty : NSObject
@property (readwrite, nullable) void (^block)(NSString * _Nullable string);
@property (readwrite, nullable) void (^dependentBlock)(NSString * _Nullable string);
@end