mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
11 lines
184 B
Rust
11 lines
184 B
Rust
// edition:2018
|
|
#![warn(clippy::macro_use_imports)]
|
|
|
|
use std::collections::HashMap;
|
|
#[macro_use]
|
|
use std::prelude;
|
|
|
|
fn main() {
|
|
let _ = HashMap::<u8, u8>::new();
|
|
println!();
|
|
}
|