Avatar
@swift-main -strict-concurrency=complete struct S: Sendable { init() {} func foo() {} } @main class Runner { static func main() async throws { var a = S() Task.detached { // (1) a.foo() } // (2) a = S() a.foo() } }