Avatar
Avatar
Iceman
@swift-6.0.3 -swift-version 6 func foo(_ task: () async throws -> ()) async throws { } func resetDatabase() async throws {} enum MyUtils { static func resetDatabase() async throws {} } @MainActor struct S { func f() async throws { try await foo(MyUtils.resetDatabase) try await foo(resetDatabase) } }
exit status: 1 with <stdin>:11:19: error: sending main actor-isolated value of type '() async throws -> ()' with later accesses to nonisolated context risks causing data races 9 | @MainActor struct S { 10 | func f() async throws { 11 | try await foo(MyUtils.resetDatabase) | `- error: sending main actor-isolated value of type '() async throws -> ()' with later accesses to nonisolated context risks causing data races 12 | try await foo(resetDatabase) 13 | }