]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/unnecessary_self_imports.fixed
Merge commit 'c19edfd71a1d0ddef86c2c67fdb40718d40a72b4' into sync_cg_clif-2022-07-25
[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() {}