Avatar
@swift-6.0.3 -swift-version 6 func foo(_: () async throws -> ()) async throws { } @MainActor struct S { init() async throws { try await foo { print("") } } }