Avatar
Avatar
Iceman
@swift-6.0.3 -swift-version 6 func foo(_: () async throws -> ()) async throws { } @MainActor struct S { init() async throws { try await foo { print("") } } }
exit status: 1 with <stdin>:6:19: error: sending main actor-isolated value of type '() async -> ()' with later accesses to nonisolated context risks causing data races 4 | @MainActor struct S { 5 | init() async throws { 6 | try await foo { | `- error: sending main actor-isolated value of type '() async -> ()' with later accesses to nonisolated context risks causing data races 7 | print("") 8 | }