JM

Results 1 issues of JM

When creating a struct with an internal `NSLock`, e.g. ```swift struct MyLockWrapper { let lock: NSLock = .init() } ``` and confirming this struct to `Sendable` ```swift extension MyLockWrapper: Sendable...