Avatar
omochimetaru 7/26/2024 2:30 AM
僕の手元でも確認できました。 [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
2:30 AM
挙動が違うのやばいな