@MainActor
func foo(_: () async throws -> ()) async throws { } func initFooBody() async throws {} @MainActor struct S { init() async throws { try await foo(initFooBody) } }