mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
271 B
Objective-C
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
|