mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 18:53:39 +00:00
b2dcfddb24
Pretty print async block without redundant space **Repro:** ```rust macro_rules! m { ($e:expr) => { stringify!($e) }; } fn main() { println!("{:?}", m!(async {})); } ``` **Before:** <code>"async {}"</code> **After:** `"async {}"` <br> In this function: |
||
---|---|---|
.. | ||
src | ||
Cargo.toml |