mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
df921190f3
Fix spacing in pretty printed PatKind::Struct with no fields Follow-up to #92238 fixing one of the FIXMEs. ```rust macro_rules! repro { ($pat:pat) => { stringify!($pat) }; } fn main() { println!("{}", repro!(Struct {})); } ``` Before: <code>Struct { }</code> After: <code>Struct {}</code> |
||
---|---|---|
.. | ||
src | ||
Cargo.toml |