struct S: Sendable { init() {} func foo() {} } func main22() async throws { var a = S() Task { // (1) a.foo() } // (2) a = S() a.foo() }