summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unnecessary_self_imports.fixed
blob: 7fc978d3ef7e758ac0c1f2e45ee0c0187c830cf1 (plain)
1
2
3
4
5
6
7
8
9
10
//@run-rustfix
#![warn(clippy::unnecessary_self_imports)]
#![allow(unused_imports, dead_code)]

use std::collections::hash_map::{self, *};
use std::fs as alias;
use std::io::{self, Read};
use std::rc;

fn main() {}