Avatar
@swift-main -module-name main -strict-concurrency=complete struct S: Sendable {} actor A { func foo(e: S = S()) {} } func main(a: A) async { await a.foo() }