Avatar
omochimetaru 8/24/2024 5:18 AM
@swift-main -strict-concurrency=complete struct S: Sendable { init() {} func foo() {} } @MainActor func main22() async throws { var a = S() Task.detached { // (1) a.foo() } // (2) a = S() a.foo() }