Avatar
@swift-6.0.3 -swift-version 6 func foo(_: @MainActor () async throws -> ()) async throws { } func foo(_: () async throws -> ()) async throws { } struct S { func f() async throws { try await foo { @MainActor in print("") } } @MainActor func g() async throws { try await foo { print("") } } } オーバーロードの解決もなんか変だ