]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/unnecessary_self_imports.fixed
Merge commit '7bfc26ec8e7a454786668e7e52ffe527fc649735' into clippyup
[rust.git] / src / tools / clippy / tests / ui / unnecessary_self_imports.fixed
1 // run-rustfix
2 #![warn(clippy::unnecessary_self_imports)]
3 #![allow(unused_imports, dead_code)]
4
5 use std::collections::hash_map::{self, *};
6 use std::fs as alias;
7 use std::io::{self, Read};
8 use std::rc;
9
10 fn main() {}