[omochi@omochi-mbp sen]$ cat a.swift struct S: Sendable {} actor A { func foo(e: S = S()) {} } func main(a: A) async { await a.foo() } print(1) [omochi@omochi-mbp sen]$ cat a.swift | swift - -strict-concurrency=complete 1