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
Examples:
use std::{ fs, // (temporarily commented, we'll need this again in a second) io, }; use foo::{ self // this is important };
Becomes:
use std::fs; use foo::{self, // this is important};
Which now has syntax errors.
The text was updated successfully, but these errors were encountered:
use
I ran into this issue and a similar issue that resulted in unexpected and unwanted behavior.
Formatting deletes the import if all of the items are commented out.
Before
use std::fs::{ // File };
After
Expected
Sorry, something went wrong.
Improve tests for rust-lang#5852
4f8f183
e74e0e9
Improve tests for #5852
b636723
Successfully merging a pull request may close this issue.
Examples:
Becomes:
Which now has syntax errors.
The text was updated successfully, but these errors were encountered: