Avatar
Avatar
Kyome22
@swift-6.0.3 @swift-5.10.1 struct Client { var handler: @Sendable () async throws -> Void static let shared: Client = { let model = Model() return Self(handler: { try await model.handle() // ここでawaitをつけるかどうか }) }() private actor Model { func handle() throws {} } }
<stdin>:7:17: warning: no 'async' operations occur within 'await' expression 5 | let model = Model() 6 | return Self(handler: { 7 | try await model.handle() // ここでawaitをつけるかどうか | `- warning: no 'async' operations occur within 'await' expression 8 | }) 9 | }()