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
I made the following file:
// example.rs mod d; mod f; mod s; mod r#if; mod r#else; use d::*; use f::*; use s::*; use r#if::*; use r#else::*;
And I ran the following command:
rustfmt --unstable-features --skip-children --emit stdout example.rs
I got the following output.
// example.rs mod d; mod r#else; mod f; mod r#if; mod s; use d::*; use f::*; use r#else::*; use r#if::*; use s::*;
rustfmt version: 1.4.15-nightly (aedff61 2020-05-19)
The text was updated successfully, but these errors were encountered:
skip-children and unstable-features were removed in #4006, looks like this is fixed on master. I'll add a test case for regression
skip-children
unstable-features
Sorry, something went wrong.
Regression test for rust-lang#4254
74fb8cd
Closes rust-lang#4254
Regression test for #4254
cf1f0cf
Closes #4254
Successfully merging a pull request may close this issue.
I made the following file:
And I ran the following command:
I got the following output.
rustfmt version: 1.4.15-nightly (aedff61 2020-05-19)
The text was updated successfully, but these errors were encountered: