The following code
func foo(
body: nonisolated(nonsending) () async -> Void
) async { }
gets formatted to
func foo(
body: nonisolated (nonsending)() async -> Void
) async { }
which results in a syntax error since there must not be a whitespace between nonisolated and (nonsending)