mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-13 08:27:14 +00:00
10 lines
187 B
Rust
10 lines
187 B
Rust
#![deny(clippy::implicit_hasher)]
|
|
|
|
use std::collections::HashSet;
|
|
|
|
fn main() {}
|
|
|
|
pub fn ice_3717(_: &HashSet<usize>) {
|
|
let _ = [0u8; 0];
|
|
let _: HashSet<usize> = HashSet::new();
|
|
}
|