You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Oughie To the best of my knowledge use std::io::{self}; and use std::io; are semantically different. See #3750 as an example. That's why rustfmt doesn't modify the code.
Consider the following example:
use std::io::{self};
rustfmt does not modify this.
Instead, it should automatically turn into:
use std::io;
The text was updated successfully, but these errors were encountered: