We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Rustfmt adds a comma to the following and causes a compiler error.
macro_rules! idx { ($(#[$attr:meta])* $vis:vis struct $name:ident; $metadata:ident) => { $(#[$attr])* $vis struct $name(usize); }; } idx!( #[derive(Debug)] pub struct FooIdx; // rustfmt adds a comma here Meta );