mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
9 lines
216 B
Rust
9 lines
216 B
Rust
#![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() {}
|