mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-08 13:55:25 +00:00
11 lines
231 B
Rust
11 lines
231 B
Rust
//@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() {}
|