2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-02-28 21:37:16 +00:00
rust-clippy/tests/ui/unnecessary_self_imports.rs

10 lines
216 B
Rust
Raw Normal View History

2021-04-12 18:24:47 -07:00
#![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() {}