Files
swift-mirror/test/SILGen/Inputs/objc_preconcurrency.h
2022-08-29 21:02:03 -07:00

10 lines
271 B
Objective-C

@import Foundation;
#define SENDABLE __attribute__((__swift_attr__("@Sendable")))
SENDABLE
@interface NSTouchGrass : NSObject
@property (nullable, copy) void (SENDABLE ^cancellationHandler)(void);
@property (nonnull, copy) void (SENDABLE ^exceptionHandler)(void);
@end