Closed as not planned
Description
In my opinion, rustfmt should rewrite use std::io::{self};
to use std::io;
. use std::io::{self};
can sometimes be left over after removing other imports. If you for example (automatically) import std::io
and std::io::Read
(with rust-analyzer) and then remove the Read
import, use std::io::{self};
is left behind.