summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unnecessary_self_imports.rs
blob: c3fcf7c951a17e039c88dc4ab68add21b8e88397 (plain)
1
2
3
4
5
6
7
8
9
#![warn(clippy::unnecessary_self_imports)]
#![allow(unused_imports, dead_code)]

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

fn main() {}