We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rustfmt formats this macro like this:
macro_rules! member_mut { ($self:expr, $member:expr) => {{ use self::Member::*; let r = &mut *$self; match $member { A => &mut r.a, B => &mut r.b, } }}; }
The closing braces are wrongly indented.
The text was updated successfully, but these errors were encountered:
This was fixed by 2836f9b
Sorry, something went wrong.
Add test cases for fixed issues
00b2470
The cases with `hard_tabs: true` were fixed in 2836f9b. Not sure about the rest, but this suggests a number of open issues are already resolved. Closes rust-lang#3608 Closes rust-lang#3550 Closes rust-lang#3638 Closes rust-lang#3858 Closes rust-lang#3936
aac7f91
Successfully merging a pull request may close this issue.
rustfmt formats this macro like this:
The closing braces are wrongly indented.
The text was updated successfully, but these errors were encountered: