2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2024-12-24 12:03:28 +00:00
rust-clippy/tests/ui/unnecessary_self_imports.fixed

11 lines
215 B
Rust
Raw Normal View History

// 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() {}