mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 08:13:41 +00:00
682b4cbc4e
Fix double space in pretty printed TryBlock Follow-up to #92238 fixing one of the FIXMEs. ```rust macro_rules! repro { ($expr:expr) => { stringify!($expr) }; } fn main() { println!("{}", repro!(try {})); } ``` Before: <code>try {}</code> After: <code>try {}</code> The `head` helper already appends a space: |
||
---|---|---|
.. | ||
src | ||
Cargo.toml |