rust-clippy/tests/ui/unnecessary_self_imports.rs

11 lines
231 B
Rust
Raw Normal View History

2021-04-13 01:24:47 +00:00
// run-rustfix
#![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() {}