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 likes to remove commented lines that are found in odd places. This appears to affect both stable and nightly rustfmt.
rustfmt
struct X<T> // where // T: Clone { inner: String, }
struct X<T> { inner: String, }
The text was updated successfully, but these errors were encountered:
Similar issue rust-lang/rustfmt#2781 (comment)
Sorry, something went wrong.
@frewsxcv thank you. Added comment to that ticket and will close this ticket in favor of. Kind of forgot about nursery :x
No branches or pull requests
rustfmt likes to remove commented lines that are found in odd places. This appears to affect both stable and nightly
rustfmt
.Input File
After rustfmt
The text was updated successfully, but these errors were encountered: