Avatar
omochimetaru 8/23/2024 8:30 AM
@swift-5.10.1 @swift-6.0.3 @swift-main -strict-concurrency=complete @propertyWrapper struct W<T> { var wrappedValue: T { fatalError() } } extension W: Sendable where T: Sendable {} struct K: Sendable { init() {} func hi() {} } // 間違った警告が出る func main1() async throws { @W var k: K Task { k.hi() } k.hi() } // 本質的に以下と等価なはず // これだと警告は出ない func main2() async throws { let k: W<K> = .init() Task { k.wrappedValue.hi() } k.wrappedValue.hi() } (edited)