]> git.lizzy.rs Git - rust.git/blob - tests/ui/unnecessary_self_imports.rs
Auto merge of #9684 - kraktus:ref_option_ref, r=xFrednet
[rust.git] / tests / ui / unnecessary_self_imports.rs
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::{self as alias};
7 use std::io::{self, Read};
8 use std::rc::{self};
9
10 fn main() {}