rust-clippy/tests/ui/unnecessary_self_imports.fixed

9 lines
200 B
Rust

#![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() {}