mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-03 17:35:28 +03:00
ad23f30b1d
Pretty print `Fn<(..., ...)>` trait refs with parentheses (almost) always It's almost always better, at least in diagnostics, to print `Fn(i32, u32)` instead of `Fn<(i32, u32)>`. Related to but doesn't fix #118225. That needs a separate fix.